As the title states i need to Add 20% to numbers under 200, Add 15% to numbers between 200 & 300 and add 10% to numbers over 300!
Thanks
As the title states i need to Add 20% to numbers under 200, Add 15% to numbers between 200 & 300 and add 10% to numbers over 300!
Thanks
Try
=IF(A1<200,A1*1.2,IF(A1<300,A1*1.15,A1*1.1))
where A1 contains the data
Life's a spreadsheet, Excel!
Say thanks, Click *
=if(a1<200,a1*1.2,if(and(a1<=300,a1>=200),a1*1.15,a1*1.1))
Regards
Fotis.
-This is my Greek whisper to Europe.
--Remember, saying thanks only takes a second or two. Click the little star * below, to give some Rep if you think an answer deserves it.
Advanced Excel Techniques: http://excelxor.com/
--KISS(Keep it simple Stupid)
--Bring them back.
---See about Acropolis of Athens.
--Visit Greece.
So? Just to be sure!
As i understand you like more this edition..
=IF(A1<200,A3*1.2,IF(A3<=300,A3*1.15,A3*1.1))
I'd prefer:
PHP Code:
=A1*LOOKUP(A1,{0,200,300},{1.2,1.15,1.1})
Last edited by Kyle123; 07-04-2012 at 04:18 AM.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks