![]() |
|
#1
|
|||
|
|||
|
Hi,
Can someone help me with this formula, please: A customer gets a rebate once he reached a specific amount of sales: over $200000 (and until 299999) 2%, when the customer reached $300000 then he gets a rebate of 4% back of everything over $200000. I tried ( but I am a newbie ) : ![]() =IF(G21>=200000,G21*0.02,IF(G21>=300000,G21*0.04)) Thanks in advance
|
|
#2
|
||||
|
||||
|
Hi
is the 2% rebate from 200K to 300 k or from 0 to 300k ( if sale >200k) ?
__________________
Using O365 v2503 - Did you know you can thank someone who helped you? Click on the tiny scale in the right upper hand corner of your helper's post |
|
#3
|
|||
|
|||
|
Hi ,
it is over $200000, no discounts under $200000 $200000 - 299999 2% but if the customer reached $300000 then he gets 4% back for everything over $200000 Thanks |
|
#4
|
||||
|
||||
|
Perhaps =IF(A1>=300000,(A1-200000)*0.96+200000,MAX(0,A1-200000)*0.98+MIN(A1,200000))
where A1 contains the sale
__________________
Using O365 v2503 - Did you know you can thank someone who helped you? Click on the tiny scale in the right upper hand corner of your helper's post |
|
#5
|
|||
|
|||
|
How about:
=IF(A1<200000,"",IF((A1>=200000)*(A1<300000),0.02, 0.04)*(A1-200000)) |
|
#6
|
|||
|
|||
|
Quote:
This shows me Err:508 |
|
#7
|
|||
|
|||
|
Quote:
This formula shows me Err:509 =IF(G21<200000,"",IF((G21>=200000)*(G21<300000),0. 02, 0.04)*(G21-200000)) |
|
#8
|
|||
|
|||
|
Don't know what you are doing.
|
|
#9
|
||||
|
||||
|
Which are your regional settings?
You will have to adapt the formula eventually if you use European settings
__________________
Using O365 v2503 - Did you know you can thank someone who helped you? Click on the tiny scale in the right upper hand corner of your helper's post |
|
#10
|
|||
|
|||
|
Hi Pecoflyer,
my fault, sorry. After I am back at work, your formula works just fine. Probably my settings at home excel was different. Thank to everybody for help |
|
#11
|
|||
|
|||
|
|
|
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Help with Index Function to Select Range of Cells
|
bretyuin | Excel | 1 | 02-24-2016 05:11 AM |
Using Left function to format a range
|
USAOz | Excel | 4 | 09-10-2015 03:00 AM |
select a cluster of point from a range based on x and y values
|
sandcharles | Excel | 5 | 02-19-2015 06:15 AM |
| Help me with simple IF stmt to test date within a range | tomseeley | Excel | 4 | 02-23-2014 02:13 PM |
comparing values from a range
|
struct | Excel | 1 | 04-01-2011 07:17 PM |