VBA Run time error when counting blank cells

JST013

Board Regular
Joined
Mar 11, 2015
Messages
74
Code:
Dim tbl As Range
    Set tbl = ws.Range("Table1")
    Dim archive As Worksheet
    Set archive = ThisWorkbook.Sheets("Sheet1")
    Dim rng As Range
    
    
     Set rng = tbl.SpecialCells(xlCellTypeBlanks)[INDENT]If rng.Cells.Count <> tbl.Cells.Count Then[/INDENT]
[INDENT=2]'do stuff[/INDENT]
[INDENT]End If

[/INDENT]



I'm not sure why, but I am getting a run time error for set rng = tbl.SpecialCells(xlCellTypeBlanks) if the range is blank...

Maybe there is a better way of doing this to begin with, but the end game goal is to have the code copy the table and paste it else where if its not blank. I just don't want it to copy and paste if its blank...
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Nevermind...If its blank it doesn't effect me. Sorry :ROFLMAO:

Maybe if anyone knows off hand what happened it would be nice to know, but don't sweat it.
 
Upvote 0

Forum statistics

Threads
1,215,840
Messages
6,127,217
Members
449,370
Latest member
kaiuuu

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