If range of cells greater than and less than X

Joined
Jan 13, 2021
Messages
20
Office Version
  1. 2007
Platform
  1. Windows
=IF(A2:A11>=50&A2:A11<=59,"*","")

The formula above gives me "#VALUE!"

I am trying to get a "*" if A2:A11 have any number that is in the range between 50-59.

So, if A6 (or any other cell) has 50 (or any other number up to 59), as shown below, I would get a "*" as a sign.

Please help, thank you!

2
26
17
12
50
3
2
4
11
1
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
One possibility
Book1
ABC
1Header*
22
326
417
512
650
73
82
94
1011
111
Sheet1
Cell Formulas
RangeFormula
C1C1=IF(COUNTIFS($A$2:$A$11,">=50",$A$2:$A$11,"<=59")>0,"*","")
 
Upvote 0
Solution

Forum statistics

Threads
1,224,818
Messages
6,181,152
Members
453,021
Latest member
Justyna P

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