Efficient VBA code for conditionally deleting rows in big excel sheets

akash27

New Member
Joined
Jul 6, 2017
Messages
3
My excel sheet has 40 columns and more than 1,00,000 rows. I want to delete all the rows which contain cell with a string "NA" in any of the columns. I am struggling to find an efficient VB code for this on, which doesn't cause Excel to crash. Any suggestions?
P.S. Exact number of rows and columns are not known apriori. And, I'm new to VBA, any help with the complete code would be greatly appreciated.
Link to the concerned file - https://drive.google.com/file/d/0Bzl56SYDK-iRdTE1LTlYZGsxSE0/view?usp=sharing

My VBA code (this takes forever!):

<code style="margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: Consolas, Menlo, Monaco, "Lucida Console", "Liberation Mono", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", monospace, sans-serif; vertical-align: baseline; white-space: inherit;">Sub DeleteRowWithContents()

'Finds the last non-blank cell on a sheet/range.

Dim lRow AsLong
Dim lCol AsLong

lRow
= Cells.Find(What:="*", _
After
:=Range("A1"), _
LookAt
:=xlPart, _
LookIn
:=xlFormulas, _
SearchOrder
:=xlByRows, _
SearchDirection
:=xlPrevious, _
MatchCase
:=False).Row

lCol
= Cells.Find(What:="*", _
After
:=Range("A1"), _
LookAt
:=xlPart, _
LookIn
:=xlFormulas, _
SearchOrder
:=xlByColumns, _
SearchDirection
:=xlPrevious, _
MatchCase
:=False).Column

'MsgBox "Last Row: " & lRow
'MsgBox "Last Column: " & lCol


For j = lCol To1Step-1
For i = lRow To1Step-1
If(Cells(i, j).Value)="NA"Then
Cells
(i,"A").EntireRow.Delete
EndIf
Next i
lRow
= Cells.Find(What:="*", _
After
:=Range("A1"), _
LookAt
:=xlPart, _
LookIn
:=xlFormulas, _
SearchOrder
:=xlByRows, _
SearchDirection
:=xlPrevious, _
MatchCase
:=False).Row
Next j


EndSub</code>
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
what does work is to filter the items you don't want out, copy the stuff you want to keep to a temp sheet, delete the redundant sheet and then rename the temp sheet. I had a routine that would take 5 hours, and reduced it to less than 10 seconds
 
Upvote 0
Sounds clever!
Could you please elaborate and guide me to relevant VB functions that would be useful for this task.
 
Upvote 0
you'll need to adjust for your needs

Code:
Private Sub Remove_Duplicates()

    Application.ScreenUpdating = False

    Dim lr As Long
    lr = ActiveSheet.Range("B150000").End(xlUp).Row

    'Sheets.Add After:=Sheets(Sheets.Count)
    Sheets.Add.Name = "Process"

    Sheets("Sheet1").Select

    ActiveSheet.Range("$A$1:$AL$" & lr).AutoFilter Field:=37, Criteria1:=1

    Range("A1:Al" & lr).Select

    Dim rng As Range
    Set rng = Application.Intersect(ActiveSheet.UsedRange, Range("A1:Al" & lr))
    rng.SpecialCells(xlCellTypeVisible).Copy Destination:=Sheets("process").Range("A1")

    Application.DisplayAlerts = False
    ' Application.EnableEvents = False
    Sheets("sheet1").Delete
    ActiveSheet.Name = "Sheet1"
    ' Application.EnableEvents = True
    Application.DisplayAlerts = True
    Columns("Aj:Al").Select
    Selection.Delete Shift:=xlToLeft

    Application.ScreenUpdating = True

End Sub
 
Upvote 0
Using Find & Replace... replace all the NA with #N/A, then goto Find & Select>Goto Special>Constants>Errors to select all the #N/A and then right click Delete>Entire Rows.
 
Upvote 0
No offense, but this is worse than looping as Excel crashes every time when the data is big.
Using Find & Replace... replace all the NA with #N/A, then goto Find & Select>Goto Special>Constants>Errors to select all the #N/A and then right click Delete>Entire Rows.
 
Upvote 0
No offense, but what do you expect when dealing with a file of this size in Excel?:)
 
Upvote 0

Forum statistics

Threads
1,216,030
Messages
6,128,413
Members
449,449
Latest member
Quiet_Nectarine_

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top