> It didn't work. It gave me a number that was close to what it should be
> but
[quoted text clipped - 44 lines]
>> > Thanks soooo much!
>> > Sabrina
Sure! The vital information is this:
Column E should be the TOTAL order amount (Cost+S&H+Tax)
Column F should be the COST of the original item purchased (NO tax, NO s&H)
Column G should be the COMMISSION EARNED for the transaction, which is 25%
of the F (COST).
So if someone purchases a product for 24.95
a. I need a formula that will calculate the commission, which in this case,
should be 6.24
b. I need one that will calculate the TOTAL order amount. So 24.95+7.99 with
8.25% sales tax added to that sum. That total in this example should be 35.66
AND I AM A BIG JERK. It does work....THANKS BIFF!!!! I had my S&H entered as
6.95 and it is supposed to be 7.99. I AM SOOOO SORRY.
But how do I apply that formula (=IF(F4="",0,ROUND((F4+7.99)*1.0825,2)) to
all the transactions, not just the F4 transaction?
> Can you give us an example of a value in F4 for which the formula didn't
> give the correct answer? And be sure to tell us what you think the correct
[quoted text clipped - 50 lines]
> >> > Thanks soooo much!
> >> > Sabrina
T. Valko - 13 Jun 2007 06:24 GMT
>But how do I apply that formula (=IF(F4="",0,ROUND((F4+7.99)*1.0825,2)) to
>all the transactions, not just the F4 transaction?
Well, if you have a range of price cells, like F4:F10 :
=IF(COUNT(F4:F10),ROUND((SUM(F4:F10)+7.99)*1.0825,2),0)
That assumes S&H is charged for the entire order and not each individual
item.
biff
> Sure! The vital information is this:
> Column E should be the TOTAL order amount (Cost+S&H+Tax)
[quoted text clipped - 77 lines]
>> >> > Thanks soooo much!
>> >> > Sabrina