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

  • Thread starter Thread starter Guest
  • Start date Start date
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
 
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
 
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
 
Back
Top