Home |
Search |
Today's Posts |
#2
![]() |
|||
|
|||
![]()
Dd wrote:
i would like to run a macro that does the following. start at row 2 It's easier to start at the end and work back. Sub DeleteRows() Dim lRow as Long lRow = ActiveSheet.UsedRange.SpecialCells(xlLastCell).Row Do Until lRow = 1 If Cells(lRow, "L")=0 And Cells(lRow, "M")=0 And Cells(lRow, "N")=0 Then Rows(lRow).Delete End If lRow = lRow-1 Loop End Sub An alternative would be to use AutoFilter and delete all the visible rows. Bill Manville MVP - Microsoft Excel, Oxford, England No email replies please - respond to newsgroup |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Multiple rows of data on a single axis (charting) | Charts and Charting in Excel | |||
Delete Chart | Charts and Charting in Excel |