Forum Discussion

ash_m200's avatar
ash_m200
Copper Contributor
Sep 08, 2020
Solved

Excel IF Formula

Hi, I've searched google and the forums for the answer to my query to no avail.  What I am trying to do is calculate a % number based on a tiered structure, as follows:

 

Cell B1 will be a percentage based on the following tiered structure, where A1 equals the dollar value:

$0-$100,000 = 0.00%

The next $400,000 = 0.05%

The next $500,000 = 0.10%

Anything over $1,000,000 = 0.20%

 

I can get excel to give me the above percentages for set amounts in the brackets but it wont allow the tiered structure (e.g. $550,000 entered into A1 is returning 0.10% in B1 whereas it should be 0.04%).  I have this so far:

=IF(A1<100000,0%,IF(AND(A1>100000,A1<500000),0.05%,IF(AND(A1>500000,A1<1000000),0.1%,IF(A1>1000000,0.2%,0))))

 

Thanks in advance,

Ashlea

9 Replies

Resources