Message Based on Cell Range Contents

C.R.

Board Regular
Joined
Jul 1, 2002
Messages
76
I'm missing something here.
I have a range of cells, say C1:C30. If any of the numerical values of the cells in this range is greater than 10, I'd like the formula in cell B1 to post a message that says "Complete". If none of the cells in the range is greater than 10, B1 needs to remain blank. Any ideas ?

Thanks in advance.
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Put this formula in B1 and copy down
=IF(C1>10,"Complete","")

Read the question too fast and missed that you wanted B1 to say complete if "any" cell was over 10

Try this
=IF(MAX(C1:C30)>10,"complete","")
This message was edited by Dragracer on 2002-10-03 22:24
 
Upvote 0
Dragracer,

Works perfectly. I've not used the MAX function before. Thanks for your help.

C.R.
 
Upvote 0

Forum statistics

Threads
1,214,787
Messages
6,121,565
Members
449,038
Latest member
Guest1337

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