OK - I’m working on property taxes here at work, and I’ve got a conundrum. I’m pretty sure there’s a way to create this formula, but I can’t figure it out.
Column F shows the amount of taxes due. Column G is a Yes/No column - some of the appraisals are under appeal, some are not. I need to add the amounts due for the properties that are NOT currently under appeal.
I have done this manually by simply telling it to ADD and clicking on each cell, but I’ve got to have a formula, since the boss is going to want to see four different variations of the spread sheet.
I’m not clear on what you want to do. What do you mean when you say “I need to add the amounts due for the properties that are NOT currently under appeal” - you need to add what? There is just one amount in Column H for each property, right?
I think what you mean is that: If there is a Yes in Cell G1, then copy the amount shown in F1 to H1; if there is a No in G1, then leave Column H1 blank.
Is that what you mean? Because the formula will be different if you are actually adding something up. Please advise.
I tried this, but it didn’t work. I got 0 as my answer.
I was able to get help from my mother-in-law (of all people), and here’s what she did:
She added Column H. Column H was an IF/THEN - if G = N, then H = F; if G = Y, then H = 0. Then, she totalled at the bottom. It may not have been the fastest way to go, but it did indeed work.
Thanks for all of your suggestions! (You guys are FAST!)
If “yes” or “no” are the only possiblities, then the second IF statement is unnecessary. Also, the second IF statement is formatted incorrectly - it needs one more argument.
I got the same “0” result just now when I tried it. I used the formula helper, and I had the columns reversed. Make sure you have the range and the sum range in the correct order in te formula.
If “yes” and “no” are the only possibilities and you don’t have the second statement, then “false” will appear if the answer is “no.” If you don’t mind “false” appearing, then you are correct. I for one do not like to see the word “false” when I really want to see a zero or a blank.
The formula does work. It does not need one more argument to do what I said it would do. Copy the above and try it. Naturally there could be another way to get the same result, but my formula is correct as written.
Sorry for the late response. What I meant was, replace the second “IF” statement with “0”. That gives you the same result without having to decode two “IF” statements.