Hi, new here, so thank you for the opportunity to ask. I've got a simple checkbook set up, with all the typical entries: date, amount, type transaction, etc. I have a "reconciled" column, "CLR," that I'll type in "R" when it clears the bank.
What I've been beating my head over for several hours is a formula that updates my bank balance when I reconcile with "R."
Here's what I've tried so far:
- =INDEX(AutoNum:CLR, MATCH(MAX(COLLECT(AutoNum:AutoNum, CLR:CLR, =CLR@row)), Balance:Balance, 1), 13)
#NO MATCH
- =INDEX([Balance]:[Balance],MATCH(MAX(COLLECT([Balance]:[Balance],[CLR]:[CLR],"R",[Date]:[Date],1)"R",1))1,13)
#UNPARSEABLE
- =INDEX([Balance]:[Balance], MATCH(CLR:CLR = CLR1)1,13)
#UNPARSEABLE
- =INDEX(COLLECT(Balance:Balance, CLR:CLR, CLR@row, MAX(COLLECT(Balance:Balance, CLR:CLR, CLR@row, Date:Date, Date@row))), 1)
#INCORRECT ARGUEMENT SET
I've borrowed from several others to get to these, but I'm sure I'm ordering the arguments wrong. Any help would be greatly appreciated!