VBA WorksheetFunction problem

  • Thread starter Thread starter Jeff Wright
  • Start date Start date
J

Jeff Wright

Greetings!

Can anyone tell me why I get a runtime error (1004) when running the simple
routine below? The data from B1 to B4 is 1, 2, 3, 4. The remainder of the
column is empty.

Sub cmdCountRows_Click()
Dim Leap As Integer
Leap = Application.WorksheetFunction.CountA("B1:B4")
MsgBox Leap
End Sub

Thanks for your help!

Jeff
 
Hi Jeff,
I don't get an error, but I do not get the correct answer either. I am using
V2003. I will kep an eye on this question, since mine is not working
correctly either.
 
Jeff,

When using a worksheet function you still have to use
VBA syntax to tell Excel what to evaluate.
Adding "Range" will do it...

Leap = Application.WorksheetFunction.CountA(Range("B1:B4"))

Also, for what it's worth, the Worksheet function returns a double.

Regards,
Jim Cone
San Francisco, CA

----- Original Message -----
From: "Jeff Wright" <[email protected]>
Newsgroups: microsoft.public.excel.programming
Sent: Friday, December 10, 2004 8:20 PM
Subject: VBA WorksheetFunction problem
 
Jeff
you need to add the word : range

Application.WorksheetFunction.CountA(range("B1:B4"))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top