Conditional Format based on increments

earwig999

New Member
Joined
Jan 11, 2013
Messages
42
Hi,

is it possible to create a formula for a conditional format to recognise increments of £250,000 and highlight figures in the column which exceed them?

INCREMENTS of £250,000
E.g.
250000234200
500000310000
750000400000
1000000475000
1250000501200
1500000654000
1750000748000
2000000810000

<tbody>
</tbody>


I hope this makes some sense with the example table above.
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Assuming that you data is sorted in Ascending order, and that the first number appears in cell B2, then select cells B3 to the end, and enter this Conditional Formatting formula:
Code:
=INT($B3/250000) > INT($B2/250000)
and choose your desired formatting option.
 
Upvote 0
Assuming that you data is sorted in Ascending order, and that the first number appears in cell B2, then select cells B3 to the end, and enter this Conditional Formatting formula:
Code:
=INT($B3/250000) > INT($B2/250000)
and choose your desired formatting option.

Thank you and it works.... sort of

What I didn't say was that the figures go down as well as up on occasion and then the formula doesn't seem to work correctly.

£234,201
£297,171
£350,893
£533,307
£403,836
£583,518
£522,684
£789,871
£945,762
£876,035
£0
£884,436
£909,347
£868,714
£921,074
£1,130,828
£1,133,814

<colgroup><col></colgroup><tbody>
</tbody>
 
Upvote 0
What I didn't say was that the figures go down as well as up on occasion and then the formula doesn't seem to work correctly.
Yes, the devil is always in the details! That is why it is usually best to be as detailed as possible.

Perhaps this will work:
Code:
=INT($B3/250000) > INT(MAX($B2:B2)/250000)
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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