#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 184
Default Conditional Formula

I am trying to add a conditional formula to calculate commission sales and I
keep coming up with #NAME?. The criteria I am working with a if the
amount in cells B3 thru B8 are less than $1000 then the commission is paid
at 5%, if it is between $1000 and $3999.99 then the commission is paid at 10%
and if is above $4000 then the commission is paid at 12.5%. I am imputting
the formula in cells F3 thru F8. The formula I was using worked for some but
not for others. This is the function I was using:
IF(B3<1000,B3*5%,IF(B3BETWEEN1000,3999.99,B3*10%,I F(B34000,B3*12.5%))).
Please can someone tell me what I am doing wrong, I need help yesterday.....:(
--
Thanks, Your help is really appreciated

Nikki
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default Conditional Formula

I think the problem is that there is no function called BETWEEN. Try this:

=IF(B3<1000,B3*5%,IF(AND(B3=1000,B3<4000),B3*10%, IF(B3=4000,B3*12.5%)))


"nikki" wrote:

I am trying to add a conditional formula to calculate commission sales and I
keep coming up with #NAME?. The criteria I am working with a if the
amount in cells B3 thru B8 are less than $1000 then the commission is paid
at 5%, if it is between $1000 and $3999.99 then the commission is paid at 10%
and if is above $4000 then the commission is paid at 12.5%. I am imputting
the formula in cells F3 thru F8. The formula I was using worked for some but
not for others. This is the function I was using:
IF(B3<1000,B3*5%,IF(B3BETWEEN1000,3999.99,B3*10%,I F(B34000,B3*12.5%))).
Please can someone tell me what I am doing wrong, I need help yesterday.....:(
--
Thanks, Your help is really appreciated

Nikki

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Conditional Formula

if it is between $1000 and $3999.99
if is above $4000


I guess you meant greater than or equal to 4000? Otherwise, those conditions
*exclude* 4000.

=IF(B3<1000,B3*5%,IF(B3<4000,B3*10%,B3*12.5%))


--
Biff
Microsoft Excel MVP


"nikki" wrote in message
...
I am trying to add a conditional formula to calculate commission sales and
I
keep coming up with #NAME?. The criteria I am working with a if the
amount in cells B3 thru B8 are less than $1000 then the commission is
paid
at 5%, if it is between $1000 and $3999.99 then the commission is paid at
10%
and if is above $4000 then the commission is paid at 12.5%. I am imputting
the formula in cells F3 thru F8. The formula I was using worked for some
but
not for others. This is the function I was using:
IF(B3<1000,B3*5%,IF(B3BETWEEN1000,3999.99,B3*10%,I F(B34000,B3*12.5%))).
Please can someone tell me what I am doing wrong, I need help
yesterday.....:(
--
Thanks, Your help is really appreciated

Nikki



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel 2002 Formula: Urgent Conditional Formula Required Right Away - if possible blue[_2_] Excel Discussion (Misc queries) 2 July 11th 07 06:08 PM
Formula, Conditional Formula Needed Karl Excel Discussion (Misc queries) 12 June 23rd 07 04:12 AM
Conditional Formula to indicate Formula in cell SteveW New Users to Excel 9 August 2nd 06 01:12 AM
Conditional Formula DeeExpus Excel Discussion (Misc queries) 3 May 5th 06 11:17 AM
conditional formula? Justin Excel Discussion (Misc queries) 2 February 22nd 06 07:24 PM


All times are GMT +1. The time now is 09:32 AM.

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

About Us

"It's about Microsoft Excel"