Setting up a formula

J

Jolie

Can someone explain if it is possible to create the following formula: If
column c = jma, then column f = (column d x 75). I am trying to set up a
simple billing sheet for an attorney that I work for and I want it to
automatically multiply the time entered by the correct billing amount (which
would be based on whether it is the paralegal's initials or the attorney's
initials in column c). Does this make sense? Is this possible?

Thanks in advance.
 
S

salgud

Can someone explain if it is possible to create the following formula: If
column c = jma, then column f = (column d x 75). I am trying to set up a
simple billing sheet for an attorney that I work for and I want it to
automatically multiply the time entered by the correct billing amount (which
would be based on whether it is the paralegal's initials or the attorney's
initials in column c). Does this make sense? Is this possible?

Thanks in advance.

In cell f1,
=IF(c1="jma",d1*75,whatever you do if c1<>"jma")

The "whatever you do..." part should be the formula applied if c1 isn't
jma, something like d1*100 probably.
 
G

Gary''s Student

Say C1 can have either ip (for Inexpensive Paralegal) or ea (for Expensive
Attorney). Then in F1 enter:

=IF(C1="ip",D1*75,D1*250)

This way ip books at $75/hr and ea books at $250/hr
 
J

Jolie

Thank you both! That did it!
--
Jolie


Gary''s Student said:
Say C1 can have either ip (for Inexpensive Paralegal) or ea (for Expensive
Attorney). Then in F1 enter:

=IF(C1="ip",D1*75,D1*250)

This way ip books at $75/hr and ea books at $250/hr
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top