Complicated Conditional output

bgallant

New Member
Joined
Dec 4, 2008
Messages
2
I would so greatly appreciate any help anyone could give me... I've been working on this for days now!

The spreadsheet I'm using has 2 worksheets. On the first worksheet, I would like a line to appear that says "Director Approval Required" whenever any one of these numbers (2280, 2294, 3553, 5644, 6445 and 7332) is typed into any one of the cells B6-B59 on the second worksheet (named "Itemized").

Using this formula,
=IF(Itemized!B6-B59=2280,"DIRECTOR APPROVAL REQUIRED:","")
I can get the above text to appear when 2280 is entered into any one of the cells B6-B59, but I can't get it to appear when any one of the above numbers is typed into any one of those cells.

I hope I am making sense. Thank you so much in advance for any help you may offer.
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Welcome to MrExcel Board!

try this
Code:
=IF(SUMPRODUCT(--(Itemized!B6:B59={2280,2294,3553,5644,6445,7332}))<>0,"DIRECTOR APPROVAL REQUIRED:","")
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

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