incrementing value if "if" condition satisfied

priyanka.R

New Member
Joined
Mar 7, 2011
Messages
9
Hi,

Pls help in getting a output.Each time if the "if" condition satisfies the counter should increment one value .So that i need to get the value and pass it some where.

if value= "hi" then
'counter should have value 1
end if
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Is this part of some VBA code? Can you post your code? I think what you need is:
Code:
Dim IfCounter as Integer
If value = "hi" Then
  IfCounter = IfCounter + 1
End If
Your example below doesn't say what value is attached to - i.e. what object you're testing for the string "hi"
 
Upvote 0
Also, in case you're just going for straight formulas, you can use Countif.

If the column you're looking for "Hi" as the result was column A:

=countif(A1:A300,"Hi")


Hope it helps :D
 
Upvote 0
Note I wouldn't use value as a variable name as it is a VBA keyword, but:

Code:
Sub test()
Dim lCounter As Long
lCounter = lCounter - (Value = "hi")
End Sub
 
Upvote 0
Hi,

Thanks a lot i got the expected one.










Is this part of some VBA code? Can you post your code? I think what you need is:
Code:
Dim IfCounter as Integer
If value = "hi" Then
  IfCounter = IfCounter + 1
End If
Your example below doesn't say what value is attached to - i.e. what object you're testing for the string "hi"
 
Upvote 0

Forum statistics

Threads
1,214,642
Messages
6,120,698
Members
448,979
Latest member
DET4492

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top