Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am trying to use code to find the next available empty row in a column (A)
and add amonths worth of days in rows and autofill the rows with formula, conditional formatting, pattern of increment in formaul, dates & numbers etc The code I use at present is like this Range("A1").Select Do If IsEmpty(ActiveCell) = False Then ActiveCell.Offset(1, 0).Select End If Loop Until IsEmpty(ActiveCell) = True --- This line i dont know how to do.... Range(ActiveCell:Activecell - 1).Autofill Destination:=Range("ActiveCell:????) Can you tell me how to add a month to the column in days based on the entry in the cell above the (ActiveCell). If I can do this I can then I will be able to automate the deletion of a month of rows and addition of a month of rows to keep the spreadsheet size down. Thanks for you help Rob |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
colating multi rows of data into single rows - no to pivot tables! | Excel Worksheet Functions | |||
Enabling option „Format rows“ to hide/unhide rows using VBA-code? | Excel Discussion (Misc queries) | |||
Counting characters in multiple rows when rows meet specific criteria | Excel Worksheet Functions | |||
Copy rows of data (eliminating blank rows) from fixed layout | Excel Discussion (Misc queries) | |||
Pivot Tables: How do I show ALL field rows, including empty rows?? | Excel Worksheet Functions |