Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have a worksheet formula I need help with.
Starting with a price as the base price -- I need to have 5 columns for available discounts to be applied to the base price.. for ex. Discount discount discount disc disc final price .. $10,000 25 10 5 5 2.5 ??? Some line items will have 1 discount to apply Some will have 2, some 3 , some 4 etc.... So depending on the numbers in the discount fields will determine how many computations need to me made to the first number... What is the best way to set this up? Thank you!! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
That didn't show how I anticipated
base price disc disc disc disc disc final price 10,000 25 10 5 5 2.5 ???? Hope this is better "Grace" wrote in message ... I have a worksheet formula I need help with. Starting with a price as the base price -- I need to have 5 columns for available discounts to be applied to the base price.. for ex. Discount discount discount disc disc final price . $10,000 25 10 5 5 2.5 ??? Some line items will have 1 discount to apply Some will have 2, some 3 , some 4 etc.... So depending on the numbers in the discount fields will determine how many computations need to me made to the first number... What is the best way to set this up? Thank you!! |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Assuming that your data is on row 2 and that 25 means 25% etc, and
that its real value is therefore 0.25, put this formula in G2: =(1-SUM(B2:F2))*A2 If you don't want one of the discounts, just set it to 0 (or just delete the cell contents). Hope this helps. Pete On Aug 24, 8:16 pm, "Grace" wrote: That didn't show how I anticipated base price disc disc disc disc disc final price 10,000 25 10 5 5 2.5 ???? Hope this is better"Grace" wrote in message ... I have a worksheet formula I need help with. Starting with a price as the base price -- I need to have 5 columns for available discounts to be applied to the base price.. for ex. Discount discount discount disc disc final price . $10,000 25 10 5 5 2.5 ??? Some line items will have 1 discount to apply Some will have 2, some 3 , some 4 etc.... So depending on the numbers in the discount fields will determine how many computations need to me made to the first number... What is the best way to set this up? Thank you!!- Hide quoted text - - Show quoted text - |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thank you Pete, but I don't want to add the discounts together and apply,
I want to take first discount, apply it to list, get the result .. then apply the sencond discount to that result, all the way across... if there is a discount % in the field... Some items get one discount... some get two, some three ... etc... Does that make sense? Grace "Pete_UK" wrote in message ps.com... Assuming that your data is on row 2 and that 25 means 25% etc, and that its real value is therefore 0.25, put this formula in G2: =(1-SUM(B2:F2))*A2 If you don't want one of the discounts, just set it to 0 (or just delete the cell contents). Hope this helps. Pete On Aug 24, 8:16 pm, "Grace" wrote: That didn't show how I anticipated base price disc disc disc disc disc final price 10,000 25 10 5 5 2.5 ???? Hope this is better"Grace" wrote in message ... I have a worksheet formula I need help with. Starting with a price as the base price -- I need to have 5 columns for available discounts to be applied to the base price.. for ex. Discount discount discount disc disc final price . $10,000 25 10 5 5 2.5 ??? Some line items will have 1 discount to apply Some will have 2, some 3 , some 4 etc.... So depending on the numbers in the discount fields will determine how many computations need to me made to the first number... What is the best way to set this up? Thank you!!- Hide quoted text - - Show quoted text - |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hello Grace,
Array-enter (enter with CTRL + SHIFT + ENTER, not only with ENTER) =A1*PRODUCT(1-B1:F1%) Unused discount cells should be deleted or filled with 0 (zero). Regards, Bernd |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thank you so much...
That seems to be exactly what I need!!! Thanks again "Bernd P" wrote in message oups.com... Hello Grace, Array-enter (enter with CTRL + SHIFT + ENTER, not only with ENTER) =A1*PRODUCT(1-B1:F1%) Unused discount cells should be deleted or filled with 0 (zero). Regards, Bernd |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I use a formula in excel to get a percentage discount | Excel Discussion (Misc queries) | |||
how to do formula with a fix discount | Excel Worksheet Functions | |||
Discount Formula | Excel Discussion (Misc queries) | |||
I need a formula to get a 15% discount from a # like $452,472.00 | Charts and Charting in Excel | |||
formula discount | New Users to Excel |