$$Excel-Macros$$ create a mcro in xls that launches other macros

2010-09-13 Thread fede
hi all, is it possible to create a macro that launches others 5 macros? someone can help me? many thanks. Fede -- -- Some important links for excel users: 1. Follow us on TWITTER for tips tricks and links : http

Re: $$Excel-Macros$$ create macro to find first empty row

2010-07-29 Thread fede
Hi David, many thanks for your answer. where i should insert your line? regards Fede On 30 Lug, 01:24, Dave Bonallack wrote: > Hi, > > Try this line of code: > > Cells(ActiveCell.Row, Columns.Count).End(xlToLeft).Offset(0, 1).Select > > Regards - Dave. > > > >

$$Excel-Macros$$ create macro to find first empty row

2010-07-29 Thread fede
i need to create a macro which put the cursor in the first empty cell in the same row of the actual active cell. i tried to use a for cycle but it doesn't work, could you please help me? Dim sh As Worksheet Dim lColonna As Long Dim row As Range Set sh = Worksheets("sheet1") ActiveCell.Offset(-1, 1