Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Row delete macro
Name: suriya Date: November 22, 2003 at 07:33:03 Pacific OS: win98 CPU/Ram: 64
Comment:
hi
I need a macro for the following simple condition
I have A1 to B50000 of data with two coloumns
This data contains Whole numbers and also only the alphabet "a" Now I need to delete all the rows, for which the value = "a"
Summary: hi I got a macro code for row deletion like this. --------------------- Sub RowDelete() Dim currRow As Integer currRow = 1 Do Until Cells(currRow, 1) = "" If Cells(currRow, 1) = Cells(currRow + ...
Summary: Can someone help me look at what is wrong with my code below? It only delete what I wanted to delete in the first sheet. I have 10 sheets for it to thourgh at. DataStartRow = 51 SearchColumn = "O" ...
Summary: re: Your subject line Formula Based Row Deletion I assume you are aware that you can't actually delete a Row via a "formula". You can however do it with VBA. re: I've tried to modify other provided ex...