Currently, customers are responsible for paying the shipping costs. The sales team suggests that customers really dislike paying shipping costs, and that offering "free shipping" instead of the 1% discount would likely increase sales. Create a formula for the "Sales with Free Shipping" column that subtracts the "Shipping Cost" from the "Sales" only if the "Expanded Order Type" is Extra Large, XX Large, or XXX Large. Copy the formula down to all the rows. What would total 2012 sales have been if the company had offered free shipping instead of the 1% discount (rounded to 2 decimal places)?

Respuesta :

Answer:

=if(Or(type = "Extra Large";type = "XX Large";type = "XXX Large");0;shipping cost)

Explanation:

While I cannot do exact reference to your excel shet I can tell you how to build the formula

you will use and if function to determinate wether the request fullfil or not the condition.

As there are several condition we use the Or function.

the "type" will be the cell on which you can reference the order side of a particular sale

Then, we write zero if positive (fulfil the criteria to get free shipping)

Then, you write the shipping cost. which is a number value

for example

         1              2              3              4               5

A     size   extra large   =if(Or(A2= "Extra Large";A2= "XX Large";A2= "XXX Large");0;shipping cost)