I am looking for help on how to create a specific formula

G

Guest

I am trying to do a formula for a spreadsheet. What I need is the following
and am not sure how to do it:
N4 =M4-(M4*H4)/2 ONLY IF H4>30 IF NOT THEN N4=M4
 
K

Kevin James

In N4,

=IF(H4>30,M4-(M4*H4)/2,M4).

HTH
--
Kevin James.
Tua'r Goleuni


|I am trying to do a formula for a spreadsheet. What I need is the following
| and am not sure how to do it:
| N4 =M4-(M4*H4)/2 ONLY IF H4>30 IF NOT THEN N4=M4
 
J

John Michl

The basic approach for an IF formula is

=IF(this is true, do this, otherwise do this)

You've got all of the components below. You just need to get them in
the correct order.

- John
 

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