Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Anyone know why I am getting this error - "Object Variable or with block
variable not set" Please help... I want to delete rows of data below "Title of Month" in multiple sheets. Thus where there is "Title of Month in all sheets, the code should look below the title and delete the data only in the row beneath the title until the last data. In this case my data are in Column A. Sub DeleteData() TargetCol = "A" For Each sh In ThisWorkbook.Sheets If ActiveSheet.Name < sh.Name Then Sheets(sh.Name).Select End If Set f = Columns(TargetCol).Find(What:="Title for Month") fRow = f.Row LastRowToDelete = Cells(fRow, TargetCol).End(xlDown).Row Range(Rows(fRow + 1), Rows(LastRowToDelete)).Delete Next End Sub Thanks a big bunch |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Hpw do I delete multiple empty rows found between filled rows? | Excel Worksheet Functions | |||
Proper procedures to delete multiple columns with 47,000 rows of data | Excel Discussion (Misc queries) | |||
How to merge multiple rows of data to new formated sheets | Excel Discussion (Misc queries) | |||
Delete rows in multiple sheets without loop? | Excel Programming | |||
Delete Rows from multiple Sheets. | Excel Programming |