Multiple Discount Scenarios

GLOWE

New Member
Joined
Sep 8, 2014
Messages
11
Hi, my daughter is opening a business and wants to offer package discounts. Example:

Buy 2 small services or a small and large get 15% Discount
Buy 2 large services get 30% discount

Eg: Small Service - Head Massage, Shoulder Massage

Large Service.- Back Massage, Full Body Massage

How could I do an if formula to calculate this or is there a better way.
Thanks in advance
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
how will the data be laid out in excel
maybe using a countif/s() maybe with a lookup

so if they buy more than 1 and its NOT 2 or more large then 15% discount
 
Upvote 0
Hi, actually I think I am a bit premature, we haven't figured out what cells to calculate from. I will be back when I figure that out
 
Upvote 0
just an idea , if all on 1 sheet using a VLOOKUP to change the service type into a L or S , this can then be expanded for all services and on a different sheet
Then a List of customers and items and the discount to apply to each service
could add a date , so they have to be purchased on same day

But does need how your layout will be
but just an idea to get you started

Book1
ABCDEFG
1CustomerServiceTYPEDiscount
2FREDHead MessageS30%LOOKUP Service - Can be on different sheet
3FREDBack MessageL30%
4FREDFull Body Message L30%ServiceType
5FREDShoulder messageS30%Head MessageS
6JohnBack MessageL0%Shoulder messageS
7TomHead MessageS15%Back MessageL
8TomShoulder messageS15%Full Body Message L
9HenryHead MessageS15%
10HenryBack MessageL15%
Sheet3
Cell Formulas
RangeFormula
C2:C10C2=VLOOKUP(B2,$F$5:$G$8,2,FALSE)
D2:D10D2=IF(A2="","",IF(COUNTIFS(A:A,A2,C:C,"L")>1, 30%, IF(COUNTIFS(A:A,A2)>1,15%,0)))
 
Upvote 0

Forum statistics

Threads
1,215,554
Messages
6,125,487
Members
449,233
Latest member
Deardevil

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top