How to stipulate multiple function arguments using the 'IF' function

jewel

New Member
Joined
Feb 19, 2013
Messages
2
I need my spreadsheet to use one formula that uses multiple 'ifs' in 1 field. In plain words formula in A3 should read something like, if A2 is 100 to 220, then 40+ ((A2-100)/2); AND if A2 >= 220 then 100; AND if A2<=100 then 40. I can't figure out how to write the multiple functional arguments. Can someone please help? Thank you!
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
I need my spreadsheet to use one formula that uses multiple 'ifs' in 1 field. In plain words formula in A3 should read something like, if A2 is 100 to 220, then 40+ ((A2-100)/2); AND if A2 >= 220 then 100; AND if A2<=100 then 40. I can't figure out how to write the multiple functional arguments. Can someone please help? Thank you!

try..


=LOOKUP(MAX(0,A2),{0;100;220},CHOOSE({1,2,3},40,40+ ((A2-100)/2),100))
 
Upvote 0

Forum statistics

Threads
1,223,234
Messages
6,170,891
Members
452,366
Latest member
TePunaBloke

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