I need help with an IF statement. I'm trying to set up a personal budget. Column A=Date, B=Expense Amount, C=Category, D=Description, E=Credit Card, F=Savings, G=Checking, H=Car Loan. I'm trying to set up some IF statements so that all I have to do is fill in Expense, Category, and Description and have everything else update automatically.
Here's the IF statement for Credit Card column E:
--IF (C="Payment" AND D="Credit Card") subtract E-B, IF (C<>"Payment") add E+B, and IF (C="Payment" and D="Car Loan") or (C="Income") then E=E.
Here's the IF statement for Savings, column F:
--If (C="Income") add F+B OR if (C="Transfer") subtract F-B, but if (C<>"Income" or "Transfer") then F=F.
Here's the IF statement for Checking, column G:
--If (C="Transfer") add G+B OR if (C="Payment") subtract G-B, but if (C<>"Payment" or "Transfer") then G=G.
So I know what I want to say, but I'm having trouble coding it. Help is greatly appreciated.
Here's the IF statement for Credit Card column E:
--IF (C="Payment" AND D="Credit Card") subtract E-B, IF (C<>"Payment") add E+B, and IF (C="Payment" and D="Car Loan") or (C="Income") then E=E.
Here's the IF statement for Savings, column F:
--If (C="Income") add F+B OR if (C="Transfer") subtract F-B, but if (C<>"Income" or "Transfer") then F=F.
Here's the IF statement for Checking, column G:
--If (C="Transfer") add G+B OR if (C="Payment") subtract G-B, but if (C<>"Payment" or "Transfer") then G=G.
So I know what I want to say, but I'm having trouble coding it. Help is greatly appreciated.