Nested IF statements based on values in Named Range

Mark Tooke

New Member
Joined
Oct 7, 2016
Messages
7
Hi,

I have a named range O8:O27 called ContractLifeValue and I have some nested IF statements in cell K38, {=IF(ContractLifeValue<50000,"All signatories listed can sign",IF(ContractLifeValue<250000,"IH, NP, LE and TJ can sign",IF(ContractLifeValue>250000,"IH and TJ can sign")))}

My objective is, if all values in the range O8 to O27 are below 50000 then text "All signatories listed can sign" appears in cell K38, if any of the values in the range O8 to O27 are between 50000 and 250000 then text "IH, NP, LE and TJ can sign" appears in cell K38, and if any of the values in the range O8 to O27 are over 250000 then text "IH and TJ can sign" appears in cell K38.

My array formula only seems to work on values entered in to O8 and does not take into account values entered in subsequent cells in the range. Any help would be gratefully received.

Mark
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Try
Code:
=IF(MAX(contractlifevalue)<50000,"All signatories listed can sign",IF(MAX(contractlifevalue)<=250000,"IH, NP, LE and TJ can sign",IF(MAX(contractlifevalue)>250000,"IH and TJ can sign")))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,545
Messages
6,120,132
Members
448,947
Latest member
test111

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