Goal

hammerb

New Member
Joined
Sep 27, 2011
Messages
10
I have an amount in cell A1. I want cell B1 to show $500 if the amount is less than $500, show $1000 if the amount is between $500.01 to $999.99, show $1300 if the amount is between $1000 to 1299.99, show $1500 if the amount is between $1300 to $1499.99, and show $2000 if the amount is greater than $1500.
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
Try.
VBA Code:
=VLOOKUP(A1,{0,500;500,1000;1000,1300;1500,1500;1500.01,2000},2)
 
Upvote 0
Solution
=LOOKUP(A1,{0,500;500.01,1000;1000,1300;1300,1500;1500,2000})

What value do you want for 1500?
 
Upvote 0

Forum statistics

Threads
1,215,517
Messages
6,125,290
Members
449,218
Latest member
Excel Master

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