Multiple values

bassls

Board Regular
Joined
Jun 4, 2003
Messages
63
I want to be able to enter 1 of 4 specific values into cell B3 and return a different specific value to cell D3. For example, if I enter .99 into B3, I want to get 1.965 in D3. Each of the original 4 in B3 has only 1 possible answer for D3.

Thanks
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
You can use an imbedded IF statement or the VLOOKUP function:

If Statement in cell D3:
=IF(B3=.99,1.965,IF(B3=value2,returnvalue2,IF(B3=value3,returnvalue3,IF(B3=value4,returnvalue4,""))))

Check out Excel's help for details and example using VLOOKUP.
 
Upvote 0

Forum statistics

Threads
1,214,643
Messages
6,120,702
Members
448,980
Latest member
CarlosWin

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