Auto Adding

mrdevon

New Member
Joined
Apr 18, 2011
Messages
8
Hi there I'm new to excel and this forum but I would like help with a formula that adds +1 to a cell when another cell reaches a certain number

eg - cell B4 reads 9 when it reaches 10 it would add +1 to say cell H14 and then again when it reaches say 15 so cell H14 would now display 2 and so on

Thanks
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Try
=ROUNDDOWN(B4/5,0)-1
No thats doesn't work for what I need as the number I want to count can very

example cells A1:A10 would read

82
104
122
94
62
88
53
129
144
167

Everytime a number over say 100 is seen it would add +1 to B1, over 120 to B2 and over 140 to B3
 
Upvote 0
I'm not quite sure I follow exactly what you're trying to do. Could you provide the desired output for the example you gave?
 
Upvote 0
I don't have the file on the computer I'm on but what I want is this....

I have a sheet where column A has a series of numbers that can be anything from 1 to 500, now in say B1 I would like it to tell me how many times the number 25 appeared B2 the number 66, B3 148, B4 212, B5 289 etc
 
Upvote 0
Thats brilliant thanks :)

Just one more thing is there something I can add into the formula to count all numbers over a certain amount if needed such as B1 =COUNTIF(A:A,(over)25)
 
Upvote 0
For over 25 use =COUNTIF(A:A,">"&25)
For greater than or equal to 25 use =COUNTIF(A:A,">="&25)
 
Upvote 0

Forum statistics

Threads
1,224,597
Messages
6,179,808
Members
452,944
Latest member
2558216095

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