View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Sandy Mann Sandy Mann is offline
external usenet poster
 
Posts: 2,345
Default How to assign a formula to a letter?

Judy,

You can't have a constant, (ie the cost of the part), and aformula in a cell
at the same time. You could have - say "y" or "n" in B2, the cost of the
part in C2 and in D2 the formula:

=IF(B2="y",C2*0.3,IF(B2="n",C2*0.4,"Not specified"))

The "Not specified" part is for if there is no entry in B2. You could have
it defaulting to 0.4 with:

=IF(B2="y",C2*0.3,C2*0.4)

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings


Replace @mailinator.com with @tiscali.co.uk


"Judy" wrote in message
...
At least I think that's what I need to do.

Our contractors' commission on parts is 40% if they purchased the part
themselves, and 30% if the office provided the part. The way it's set up
now
is the tech types "y" if they purchased the part, and "n" if it came from
the
office. So then we calculate their commission.

So what I think I need is to have a hidden formula I can refer to in the
cell that contains the $ amount of the part (hidden formula would be .40
for
y, .30 for n).

Is this possible? Or can you recommend another way to handle this?

Thanks!