Thread: Countif Code
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Steve[_4_] Steve[_4_] is offline
external usenet poster
 
Posts: 184
Default Countif Code

Hi everyone,

I am trying to promt the user with an input box "What column to
count", then use that column to count the number of "Y"s in the
column, and return the number in a message box. Here's what I have so
far:

Sub Count_Yes()

Dim Count_Col As Range

Set Count_Col = Application.InputBox(prompt:= _
"Select Any Cell in Column to Count", Type:=8)
If Count_Col Is Nothing Then
Exit Sub
End If

'Count Function
'Message Box

End Sub

Thanks for any help!