If formula

G

Guest

I am stuck trying to figure out a formula to use for my calculation. I'll try
to explain it the best I can.
Here is what I have so far: =if(F34=0,L34+F35,L35-F35). This formula works
just fine but I need to add another 'if' formula that has: if L34=0 and F34=0
then use F35-L35.
I just started doing formulas yesterday so sorry if this one is really
simple and I'm just overlooking something.
 
J

joeu2004

dualshock said:
I am stuck trying to figure out a formula to use for my calculation. I'll try
to explain it the best I can.
Here is what I have so far: =if(F34=0,L34+F35,L35-F35). This formula works
just fine but I need to add another 'if' formula that has: if L34=0 and F34=0
then use F35-L35.

There are many ways to do anything. One way to accomplish what you
seem to want is:

=if(F34=0, if(L34=0, F35-L35, L34+F35), L35-F35)

PS: Should "L34+F35" [sic] be L35+F35?
 

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

Similar Threads

If or 3
Problem with if function in excel 4
entering formulas 1
if statement issues. 2
How to Sum infinite formula 7
"If" formula help 7
Need a Formula , please help 1
If & Then 10

Top