if formula

S

srb911

I am working on a time sheet that had one other/code column. In the debit
column, there was an if function( if(I7="c",h7,"") So if the code =C, it
automatically went over to the debit column. We have added an additional
column because sometimes employees might take 2 hrs c (comp) and 2 hrs v
(vacation)
but, I only want it to add i & k if they both =c, or return the value for i
or k if one =c.
looks like this:
h i j k
other- code- other- code - Debit
2 c 3 v 2

2 v 1 c 1
Some of the formulas I have tried are;

=IF(AND(OR(I9="c",K9="c")),(H9+J9),"")
=IF(AND(I8="c",K8="c"),(H8+J8),)

It will make both columns add, regardless of what the code is.
does anybody have any ideas?
thanks for your help!
Sheila
 
M

Max

Try in L7:
=IF(AND(I7="c",K7="c"),SUM(H7,J7),IF(I7="c",H7,IF(K7="c",J7,"")))
Copy down
 
S

srb911

Max said:
Try in L7:
=IF(AND(I7="c",K7="c"),SUM(H7,J7),IF(I7="c",H7,IF(K7="c",J7,"")))
Copy down


Max,
Thank you very much. That worked great! With all the variations I was
trying, I was getting close. Again, Thank You!
Sheila
 

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