TRUE / FALSE for 3 criteria includung a max value in a range

matratus34

Board Regular
Joined
Nov 21, 2013
Messages
74
Hi,
I’m looking to return a TRUE or FALSE in a cell based on the values in 2 cells and then the highest value in a ranges of cells.

I’ve been playing around with MAX, IF and AND but with no luck.

To try and simplify my problem let’s say cell A1 has a sales value that needs to be over £100,
Cell B1 has a number of customers that needs to be over 5 but then cells C1:G1 contain percentages but I’m only interested in the range as long as the highest percentage number (in a single cell) in that range is below 30%.

Is there any way of putting that into one formula?

Any help would be greatly appreciated.
Thanks
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
See if this works:

=IF(AND(A1>100,B1>5,MAX(C1:G1) < 0.3),TRUE,FALSE)
 
Upvote 0

Forum statistics

Threads
1,215,511
Messages
6,125,250
Members
449,218
Latest member
daynle

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