Multi-result IF Statements...

jacobswenson

New Member
Joined
Jul 29, 2013
Messages
5
I am running a contest at work and I need a cell to return different values IF based on the returns results. For example the column header is "Current Reward" and I want it to return either "$500", "$750" or "$1,000" depending on the the data at specific value benchmanrks.

I know I am doing this wrong but this is what I have been trying: =IF(AND(K3>.25, K3<.3499, "$500":wink:)... and then I get stuck.

The results should return these truths: K3>.25 or <.3499 = "$500", BUT IF K3>.35 and <.4499 = "$750", BUT IF K3>.45 and <.7499 = "$1,000". Does that make any sense? Not sure where to turn for this one - couldn't find this type of problem on any of the threads... Please help!!

Jake
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Hi, here is one possible option you can try that doesn't involve nesting IF() functions.

=LOOKUP(K3,{0,0.25,0.35,0.45,0.75},{0,500,750,1000,"Over.."})
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,691
Members
448,978
Latest member
rrauni

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