G
Guest
Hi
I am trying to work the following calculation which works for D2 <= 750,000, but as soon as I go above 750,000 the numbers start going out, e
750,000 should give 82
775,000 should give 837.5 but gives 85
1000,000 should give 950 but gives 1,075...... and so o
Am I going nuts!!! - can't see where I have gone wrong. I have pasted the function below
- Up to 150,000 (rate = 0.15%
- From 150k to 750K (rate = 0.10%)
- From 750k to 1.5mill (rate = 0.05%
- Anything above 1.5mill (rate = 0.025%
=IF(D2<=150000,(0.0015*D2),IF(750000<=D2>150000,(225)+(0.001*(D2-150000)),IF(1500000<=D2>750000,(825)+(0.0005*(D2-750000)),IF(D2>1500000,(1200)+(0.00025*(D2-1500000)),0)))
Regard
IanF
I am trying to work the following calculation which works for D2 <= 750,000, but as soon as I go above 750,000 the numbers start going out, e
750,000 should give 82
775,000 should give 837.5 but gives 85
1000,000 should give 950 but gives 1,075...... and so o
Am I going nuts!!! - can't see where I have gone wrong. I have pasted the function below
- Up to 150,000 (rate = 0.15%
- From 150k to 750K (rate = 0.10%)
- From 750k to 1.5mill (rate = 0.05%
- Anything above 1.5mill (rate = 0.025%
=IF(D2<=150000,(0.0015*D2),IF(750000<=D2>150000,(225)+(0.001*(D2-150000)),IF(1500000<=D2>750000,(825)+(0.0005*(D2-750000)),IF(D2>1500000,(1200)+(0.00025*(D2-1500000)),0)))
Regard
IanF