Worksheet Function

Paul Morris

Board Regular
Joined
Sep 27, 2004
Messages
64
Hi All,

Getting a type mismatch error from the below line - any ideas on what's wrong with it? Currently the variable 'a' is undeclared.

Cheers,
Paul


a = Application.WorksheetFunction.CountA(Workbooks(UpdateFile).Sheets(1).Range("A:A"))
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
Name of the workbook: you forgot the quotes I think:
....Workbooks("UpdateFile").....

Albert 1
 
Upvote 0
Hi, Paul,

did you do something like this ?
ERROR
Dim UpdateFile As Workbook
Set UpdateFile = ThisWorkbook

then you need
Code:
a = Application.WorksheetFunction.CountA(UpdateFile.Sheets(1).Range("A:A"))
kind regards,
Erik
 
Upvote 0

Forum statistics

Threads
1,203,072
Messages
6,053,378
Members
444,660
Latest member
Mingalsbe

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