I'm trying to create a conditional formula in Excel 2007 to calculate a dollar amount, based on a set of tiered numbers.
IF D2= any number 1 through 10, multiply it by 50
IF D2= any number between 11 through 14, multiply by 75
IF D2= any number greater than 15, multiply by 100
Here's what I have, but this isn't working - it keeps saying TRUE when I enter in numbers into D2.
=IF(D2<11,D2*50)=AND(D2>10,D2<15,D2*75)=AND(D2>14,D2*100)
Any help would be appreciated!
Thanks!
Lauren
Hello Lauren, try like this
=IF(D2<=10,50,IF(D2<=14,75,100))*D2
Audere est facere
Maybe =D2*LOOKUP(D2, {1,11,15},{50,75,100})
Microsoft MVP - Excel
Entia non sunt multiplicanda sine necessitate
That worked perfect DaddyLongLegs!
Thank you !!!!!!!!!!!!!!
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks