Forum Discussion
bobbio
Nov 23, 2024Copper Contributor
How to copy last entry
How do I copy the last entry in this column to another cell.
- Nov 23, 2024
In C17:
=LOOKUP(9.9999999999999E+307, C3:C14)
HansVogelaar
Nov 23, 2024MVP
Let's say the Checking Balance cell is C40. Enter the following formula:
=LOOKUP(9.9999999999999E_307, C1:C39)
- bobbioNov 23, 2024Copper Contributor
Thanks for response. It isn't difficult to do it the way I do which is just copy/paste but I was wondering if when a new entry is inserted in the c3:c14 column that it will also populate c17
- PeterBartholomew1Nov 24, 2024Silver Contributor
Using 365 you would also have XLOOKUP
= XLOOKUP(TRUE, ISNUMBER(data), data, , , -1)
- HansVogelaarNov 23, 2024MVP
In C17:
=LOOKUP(9.9999999999999E+307, C3:C14)
- bobbioNov 24, 2024Copper Contributor
Excellent. Works perfectly. Could you explain the process?