Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.setup
|
|||
|
|||
![]()
Hi Seena
This should do what you want Sub RemoveCompletedRows() Dim i As Long, lr As Long lr = ActiveSheet.UsedRange.Rows.Count For i = lr To 2 Step -1 If UCase(Cells(i, "D")) = "X" Then Rows(i).Delete End If Next i lr = ActiveSheet.UsedRange.Rows.Count For i = 1 To lr - 1 Cells(i + 1, "A") = i Next i End Sub -- Regards Roger Govier "Srinivasulu Bhattaram" wrote in message ... Macro for deleting rows and serialising the remaing rows ================================================== == I have a spread sheet It's a ToDo List The structure is like this Column A Sl No Column B Task Column C Person Column D Completed To start with I keep entering the tasks in one stretch and take a print out. The first Column (A) will be a serialized. I wil be using this print out for few days. After two/three days, I would like to open the spread sheet and enter fresh tasks For all completed tasks I put x in Col D. What I currently require is a macro to 1.. Remove all rows where Column D contains 'x" (quotes not included.) 2.. After this operation, contents of Column A will have to be serialsed. seena --- avast! Antivirus: Outbound message clean. Virus Database (VPS): 081111-0, 11/11/2008 Tested on: 11/12/2008 6:00:16 PM avast! - copyright (c) 1988-2008 ALWIL Software. http://www.avast.com |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
MACRO HELP - deleting rows containing a range of blank cells | Excel Discussion (Misc queries) | |||
Macro Help Needed: Comparing cell values and deleting rows | Excel Discussion (Misc queries) | |||
Deleting rows with macro | Excel Worksheet Functions | |||
Macro deleting specified rows | Charts and Charting in Excel | |||
Deleting rows in a macro in Excel | Excel Discussion (Misc queries) |