IF function with multiple possible returns

olimajor123

Board Regular
Joined
Nov 13, 2013
Messages
72
Hi there,

Looking for an IF formula for the following.

Column D shows the colour given to an area of a building, Blue, Green, Yellow, or Pink. Each colour has a different financial value - I am looking for Column E to show the financial value depending on the named colour in Column D.

Please can you help

Thanks
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Try this in this order (first part has to be in alphabetical order,, e.g. Blue Green Pink Yellow)

=LOOKUP(A1,{"Blue","Green","Pink","Yellow"},{4,2,1,3})
 
Upvote 0
You could do this with a lookup table somewhere, and use VLOOKUP.

An IF formula would be:

Code:
=IF(D1="Blue",100,IF(D1="Green",200,IF(D1="Yellow",300,IF(D1="Pink",400))))
Hope this helps,

Chris.
 
Upvote 0

Forum statistics

Threads
1,216,246
Messages
6,129,700
Members
449,528
Latest member
Paula03

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