A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi,
You are welcome. If my solution helped, please mark it as Answer.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Column A Column B Column C
1. A1 100% 1200
Then for another cell D20 the Conditions are as following:
If D20<B1 then 0(Zero)
If D20>=B1 but < than B2 then C1
If D20>B2 but < than B3 then C2
If D20>B3 then C3
The Desired Answer is in form
=If(??????)
Or any other way to calculate????
Regards
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
Hi,
You are welcome. If my solution helped, please mark it as Answer.
=VLOOKUP(D20,$B$1:$C$3,2,1)
That doesn't return 0 if D20<B1, as requested.
Hi,
Try this
=VLOOKUP(D20,$B$1:$C$3,2,1)
Hope this helps.
This is Amazing! This was exactly I was Looking For. Thank You Very Much Jasper P
Try this:
=IF(D20>=B3,C3,IF(D20>=B2,C2,IF(D20>=B1,C1,0)))