View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Kasey Kasey is offline
external usenet poster
 
Posts: 6
Default Cell Calculation

I need for cell C1 to calculate the total of all fees chosen "financed" in
cell B1. So C1 will have a total number instead of a percent. What is the
function for this?

"JLatham" wrote:

In its simplest sense, an IF should work. Depends on how many choices you
need to make about the calculated fee in a single cell.

Assuming a specific cell for Finance Fee that needs to be calculated when
"Financed" is chosen from the drop down: $ amount in A1, dropdown in B1,
Finance Fee to be calculated in C1, then in C1:
=IF(B1="Financed",A1 * .01,0)
would calculate a 1% fee on amount in A1 if Financed chosen, or zero if not.

You can even nest IF statements like this:
=IF(B1="Financed",A1 * .01,IF(B1="Vehicle Loan",A1 * .015,0))
That can be carried to a maximum of 7 nested functions. But it gets
unwieldy if the rates or calculations change often and if you have a lot of
options in the drop down, then you may be better off looking at a table to
use a VLOOKUP() formula with.

"Kasey" wrote:

I am setting up a input sheet for fees.
I have two cells side by side: one where a dollar amount will be entered
and the other with a drop menu. I need for the dollar amounts to be
calculated based on the drop down item chosen. For example, if the dollar
amount is a financed fee, I need it to autmoatically calculate in an separate
cell called financed fees.
I think this may be an IF function but I am note sure.
Can someone help me?!