excel vba - delete row if the is a blank using table

Uzma Shaheen

Active Member
Joined
Nov 10, 2012
Messages
484
Office Version
  1. 365
  2. 2021
Platform
  1. Windows
  2. Mobile
  3. Web
Hiya

Im trying to delete a column if the is a blank in the column however i get no results - Im using a table but its saying no blank cells found when there clearly is

Here is my code

Code:
Sub DeleteBlankRows(SheetName As String, TableName As String)


Dim Sh As Worksheet
Dim tbTable As ListObject
Dim lRow As Long


Set Sh = ThisWorkbook.Worksheets(SheetName)
Set tbTable = Sh.ListObjects(TableName)
    
tbTable.ListColumns("Group").DataBodyRange.SpecialCells(xlCellTypeBlanks).EntireRow.Delete


lRow = Sh.Range("A:A").Find(WHat:="*", After:=Sh.Range("A1"), SearchDirection:=xlPrevious).Row
tbTable.Resize Sh.Range("A1:T" & lRow)


End Sub
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.

Forum statistics

Threads
1,215,988
Messages
6,128,145
Members
449,426
Latest member
revK

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