ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Occurances of value (https://www.excelbanter.com/excel-programming/306998-occurances-value.html)

Todd huttenstine

Occurances of value
 
Hey guys

I have values in range K40:K90. The variable called
FndVal = "dog".

Using the find function, how do I determine the number of
occurances "dog" is found within this range?


Todd

Trevor Shuttleworth

Occurances of value
 
Todd

one suggestion:

Sub test()
' the best function would be: =COUNTIF(K40:K90,"dog")
Dim FndVal As String
Dim DogCount As String
FndVal = "dog"
MsgBox WorksheetFunction.CountIf(Range("K40:K90"), FndVal)
' or
MsgBox WorksheetFunction.CountIf(Range("K40:K90"), "dog")
End Sub

Regards

Trevor


"Todd Huttenstine" wrote in message
...
Hey guys

I have values in range K40:K90. The variable called
FndVal = "dog".

Using the find function, how do I determine the number of
occurances "dog" is found within this range?


Todd




Todd Huttenstine[_3_]

Occurances of value
 
Thanks

I do not believe I have ever had the need to use the countif function before
in code, and I dont recall ever using it in a spreadhseet as a function
either. I knew it seemed like an easy task. Thanks for your help.


Todd



"Trevor Shuttleworth" wrote in message
...
Todd

one suggestion:

Sub test()
' the best function would be: =COUNTIF(K40:K90,"dog")
Dim FndVal As String
Dim DogCount As String
FndVal = "dog"
MsgBox WorksheetFunction.CountIf(Range("K40:K90"), FndVal)
' or
MsgBox WorksheetFunction.CountIf(Range("K40:K90"), "dog")
End Sub

Regards

Trevor


"Todd Huttenstine" wrote in message
...
Hey guys

I have values in range K40:K90. The variable called
FndVal = "dog".

Using the find function, how do I determine the number of
occurances "dog" is found within this range?


Todd






Trevor Shuttleworth

Occurances of value
 
You're welcome. Hope it has given you the answer you needed.

Regards

Trevor


"Todd Huttenstine" wrote in message
...
Thanks

I do not believe I have ever had the need to use the countif function

before
in code, and I dont recall ever using it in a spreadhseet as a function
either. I knew it seemed like an easy task. Thanks for your help.


Todd



"Trevor Shuttleworth" wrote in message
...
Todd

one suggestion:

Sub test()
' the best function would be: =COUNTIF(K40:K90,"dog")
Dim FndVal As String
Dim DogCount As String
FndVal = "dog"
MsgBox WorksheetFunction.CountIf(Range("K40:K90"), FndVal)
' or
MsgBox WorksheetFunction.CountIf(Range("K40:K90"), "dog")
End Sub

Regards

Trevor


"Todd Huttenstine" wrote in

message
...
Hey guys

I have values in range K40:K90. The variable called
FndVal = "dog".

Using the find function, how do I determine the number of
occurances "dog" is found within this range?


Todd









All times are GMT +1. The time now is 08:05 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com