Home |
Search |
Today's Posts |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Public Sub ProcessData()
Const TEST_COLUMN As String = "A" '<=== change to suit Dim i As Long Dim LastRow As Long Dim nMonths As Long With ActiveSheet LastRow = .Cells(.Rows.Count, TEST_COLUMN).End(xlUp).Row For i = LastRow - 1 To 2 Step -1 nMonths = DateDiff("m", .Cells(i, TEST_COLUMN).Value, .Cells(i + 1, TEST_COLUMN).Value) If nMonths 0 Then .Rows(i + 1).Resize(nMonths).Insert Next i End With End Sub -- __________________________________ HTH Bob "via135" wrote in message ... On Jan 11, 7:17 pm, via135 wrote: On Jan 11, 6:37 pm, via135 wrote: hi all i am having a list of dates "dd/mm/yyyy" format in col A as under:: 1/1/2009 5/1/2009 10/2/2009 15/6/2009 30/6/2009 20/7/2009 10/9/2009 1/1/2010 what i want is to inset row for each month end dates.upto the end of data range..?! any hlp? -via135 yes..i am getting the rows inserted only for the months available in the data. but i need rows tobe inserted for all months which are not figured in the data also. for instance.. i need 3 rows tobe inserted btw 10/2/2009 & 15/6/2009 hope u understand Mike..! -via135 oops..indeed 4 rows for feb,mar,apr & may -via135 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copying & Inserting Rows w/o Affecting other Rows Etc. | Excel Worksheet Functions | |||
When inserting date , how do I have the month spelled out | Excel Worksheet Functions | |||
Sorting dates and inserting rows | Excel Worksheet Functions | |||
Inserting Blank rows after every row upto 2500 rows | Excel Worksheet Functions | |||
Dates - Several Days In a month to month only | Excel Discussion (Misc queries) |