Can someone help me with if statement with or condition in it. Basically what I am trying to achieve is to band the percentages in to 9 categories.
Cell Q3 contains formula which is represented by a % (eg O3/N3 as a %)
Cell N3 containes a value (Order value £1400)
Cell O3 contains a value (Tender value £1250)
So in cell V3, I need a nested if statement with or in it to do;
if Q3 is = 0 then "e. Broke Even"
if Q3 is greater than -0.01% or less/equal to -10.0% then "d. Between 0% and 10% Loss"
if Q3 is greater than -10.01% or less/equal to -25.0% then "c. Between 10% and 25% Loss"
if Q3 is greater than -25.01% or less/equal to -50.0% then "b. Between 25% and 50% Loss"
if Q3 is greater /equal to-50.01% then "a. Over 50% Loss"
if Q3 is greater than 0.01% or less/equal to 10.0% then "f. Between 0% and 10% Gain"
if Q3 is greater than 10.01% or less/equal to 25.0% then "g. Between 10% and 25% Gain"
if Q3 is greater than 25.01% or less/equal to 50.0% then "h. Between 25% and 50% Gain"
if Q3 is greater /equal to 50.01% then "i. Over 50% Gain"
On the above example (1400 / 1250) = -150, as a percentage its loss of 12%. Therefore the banding should be, c. between 10% and 25% loss.
Cell Q3 contains formula which is represented by a % (eg O3/N3 as a %)
Cell N3 containes a value (Order value £1400)
Cell O3 contains a value (Tender value £1250)
So in cell V3, I need a nested if statement with or in it to do;
if Q3 is = 0 then "e. Broke Even"
if Q3 is greater than -0.01% or less/equal to -10.0% then "d. Between 0% and 10% Loss"
if Q3 is greater than -10.01% or less/equal to -25.0% then "c. Between 10% and 25% Loss"
if Q3 is greater than -25.01% or less/equal to -50.0% then "b. Between 25% and 50% Loss"
if Q3 is greater /equal to-50.01% then "a. Over 50% Loss"
if Q3 is greater than 0.01% or less/equal to 10.0% then "f. Between 0% and 10% Gain"
if Q3 is greater than 10.01% or less/equal to 25.0% then "g. Between 10% and 25% Gain"
if Q3 is greater than 25.01% or less/equal to 50.0% then "h. Between 25% and 50% Gain"
if Q3 is greater /equal to 50.01% then "i. Over 50% Gain"
On the above example (1400 / 1250) = -150, as a percentage its loss of 12%. Therefore the banding should be, c. between 10% and 25% loss.