Forum Discussion
RimRock_Ranches
Jan 23, 2025Copper Contributor
Help on a Formula for checkbook register
I am using excel as a checkbook register. I print my own checks but sometimes hand write a check on the same account so the numbers are not in series. I have a formula to auto increment my check nu...
- Jan 24, 2025
=IF(B2="Printed Check",(XLOOKUP(1,ISNUMBER($A$1:A1)*($B$1:B1="Printed Check"),$A$1:A1,,,-1)+1),"-")
How about this formula in cell A2? Cell A1 has the start value 15100. Then fill the formula down from A2.
OliverScheurich
Jan 24, 2025Gold Contributor
=IF(B2="Printed Check",(XLOOKUP(1,ISNUMBER($A$1:A1)*($B$1:B1="Printed Check"),$A$1:A1,,,-1)+1),"-")
How about this formula in cell A2? Cell A1 has the start value 15100. Then fill the formula down from A2.
RimRock_Ranches
Jan 24, 2025Copper Contributor
That works great, thank you!