View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Jim Cone Jim Cone is offline
external usenet poster
 
Posts: 3,290
Default VBA WorksheetFunction problem

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"
Newsgroups: microsoft.public.excel.programming
Sent: Friday, December 10, 2004 8:20 PM
Subject: VBA WorksheetFunction problem
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