
I am having difficulty writing
the Nested function. The formula I used was
=IF(B2<20,"LOW",IF(B2<40,"AVERAGE",IF(B2<100,"HIGH","PRIME"))).
All I got was Prime for everything. need help with a nested
function in excel.
yes you will get the all as Prime .. Because what you are doing is taking base as number of order and not the average sales price per order.
You have to use below formula -
For 1st row =IF(A1/B1<20,"LOW",IF(A1/B1<40,"AVERAGE",IF(A1/B1<100,"HIGH","PRIME")))
for 2nd row =IF(A2/B2<20,"LOW",IF(A2/B2<40,"AVERAGE",IF(A2/B2<100,"HIGH","PRIME")))
Thn you can drag the formula in the excel .
I am having difficulty writing the Nested function. The formula I used was =IF(B2<20,"LOW",IF(B2<40,"AVERAGE",IF(B2<100,"HIGH","PRIME"))). All I got...
I am confused on how to write the function for the following
problems. Based off the excel document provided.
13. In the "High Annual Sales" column create a function to identify customers that have sales greater than the total average sales of all customers for the year. If greater than the total average, the function should return "Blue Chip," otherwise return "Basic." Conditionally format the "Blue Chip" as white text with a blue fill. 14. Insert a new column to...
Create a Nested IF function to rank the customer sales by the average sales per order. If the average sales amount per order is less than $20, rank as Low, $20 to less than $40 “Average,” $40 to less than $100 as “High,” and over $100 as “Prime.” Im having difficulty writing an if function for this in excel.