A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

IF Statement, multiple criteria



 
 
Thread Tools Display Modes
  #1  
Old May 12th, 2009, 02:07 AM posted to microsoft.public.excel.worksheet.functions
chickalina
external usenet poster
 
Posts: 194
Default IF Statement, multiple criteria

Hello,
I need to write an IF statement for the following sales commission
calculation:

If 1000 then *.05
If 1000 but 3999 then *.1
If 4000 then *.125

Please help...
Thank you!

  #2  
Old May 12th, 2009, 02:26 AM posted to microsoft.public.excel.worksheet.functions
FSt1
external usenet poster
 
Posts: 2,788
Default IF Statement, multiple criteria

hi
try this
=IF(A24000,A2*0.125,IF(A21000,A2*0.1,A2*0.05))


regards
FSt1

"chickalina" wrote:

Hello,
I need to write an IF statement for the following sales commission
calculation:

If 1000 then *.05
If 1000 but 3999 then *.1
If 4000 then *.125

Please help...
Thank you!

  #3  
Old May 12th, 2009, 03:04 AM posted to microsoft.public.excel.worksheet.functions
Jacob Skaria
external usenet poster
 
Posts: 5,952
Default IF Statement, multiple criteria

Try this with your value in A1. You can add more criterias.

=A1*LOOKUP(A1,{0,1000,4000},{0.05,0.1,0.125})

If this post helps click Yes
---------------
Jacob Skaria


"chickalina" wrote:

Hello,
I need to write an IF statement for the following sales commission
calculation:

If 1000 then *.05
If 1000 but 3999 then *.1
If 4000 then *.125

Please help...
Thank you!

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 06:03 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.