Worksheetfunction.IFERROR(SUBTOTAL(9,()) not working

Sonyafm

New Member
Joined
Mar 3, 2015
Messages
18
Hello,

I have this code that works
Code:
TUnits=Application.Workheetfunction.Subtotal(9,Range(MCRStartDateRng,MCRToDateRng.Offset(lastCell -1,0))

But when I have blanks in that range the code errors

I thought adding to the above code "IFERROR", would resolve when but it doesn't work
Code:
TUnits= Application.Worksheetfunction.IFERROR(Subtota(9,(MCRStartDateRng,MCRToDateRng.Offset(LastCell -1,0))),0)

How can I resolve this error or issue?
Thank you!
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
You still need to use Application.Workheetfunction.Subtotal and not just Subtotal.
 
Upvote 0
Not sure I understood your reply. I know I have to use Application.Worksheetfunction.Subtotal, but how about including IFERROR?
 
Upvote 0
If you know, why didn't you? ;)

Rich (BB code):
TUnits= Application.Worksheetfunction.IFERROR(Application.Worksheetfunction.Subtotal(9,(MCRStartDateRng,MCRToDateRng.Offset(LastCell -1,0))),0)
 
Upvote 0

Forum statistics

Threads
1,214,870
Messages
6,122,021
Members
449,060
Latest member
LinusJE

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