S
Steve
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!
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!