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

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
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,216,098
Messages
6,128,812
Members
449,468
Latest member
AGreen17

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