Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi again Greg,
Because you say that there is other data from row 300 then the method I gave you will continually push that data down. Therefore you need to delete a row each time you insert one. Note you can still use a similar method to the one I posted for finding the next blank row by replacing '.Rows.Count' with 300. 'Find next blank row LastRow = .Cells(300, 4).End(xlUp).Offset(1, 0).Row 'Inserts data but pushes all other data down. ..Cells(LastRow, 1).EntireRow.Insert Shift:=xlDown 'Deletes the row below inserted data ..Cells(300, 4).End(xlUp).Offset(1, 0).EntireRow.Delete -- Regards, OssieMac |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
loop through the workbook and paste every sheet it into newly createdworkbook with same sheet name | Excel Programming | |||
Line count in sheet determines paste range in another sheet | Excel Programming | |||
Line count in 1 sheet to determine paste range in 2nd sheet. | Excel Programming | |||
Copy Paste from Class Sheet to Filtered List on Combined Sheet | Excel Programming | |||
Help to code Macro to Copy fron one sheet and paste in other sheet | Excel Programming |