Error in formula

amlagu

New Member
Joined
Sep 11, 2014
Messages
15
I am trying this formula, but apparently have too many arguments, any suggestions?

=IF(L12="", H12, IF(N12<>"", H12-I12-M12, H12-I12, IF(P12<>"",H12-I12-M12-O12, H12-I12-M12)))

Thanks in advance
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
In words what are you trying to achieve?

It's going wrong....

=IF(L12="", H12, IF(N12<>"", H12-I12-M12, H12-I12, HERE IF(P12<>"",H12-I12-M12-O12, H12-I12-M12)))

An IF condition has TWO results true or false

H12-I12-M12,
Thats your TRUE result

H12-I12,
Thats your FALSE result

The rest of it
IF(P12<>"",H12-I12-M12-O12, H12-I12-M12)))
is the point where its going wrong
 
Last edited:
Upvote 0
I have a spreadsheet where if a date appears in one cell (L6) then I want to subtract I6 from H6, but if no date appears I want to just display H6 value in Q6. But if L6 and N6 have a value, but P6 doesn't then I want Q6 to equal H6-I6-M6. If L6 and N6 and P6 all have values I want Q6 to equal H6-I6-M6-O6.
I had previously posted and kindly received the following formula which works, but I wanted to add one more condition and can’t seem to work it out myself.
The formula I was given is:
=IF(L6="", H6, IF(N6<>"", H6-I6-M6, H6-I6))

Thanks in advance
 
Upvote 0
Try

in Q6
=IF(AND(L6<>"",N6<>"",P6<>""),H6-I6-M6-O6,IF(AND(L6<>"",N6<>"",P6=""),H6-I6-M6,IF(L6<>"",H6-I6,H6)))
 
Upvote 0

Forum statistics

Threads
1,214,983
Messages
6,122,595
Members
449,089
Latest member
Motoracer88

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top