Transferring cell values from one Numbers sheet to another
I made a cash flow spreadsheet and forgot how to transfer the balance from the bottom of one months page to the top of the next months sheet.
iMac 27″, macOS 14.5
You can make a difference in the Apple Support Community!
When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.
When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.
I made a cash flow spreadsheet and forgot how to transfer the balance from the bottom of one months page to the top of the next months sheet.
iMac 27″, macOS 14.5
If the ending balance is in a footer row it is pretty simple. If the ending balance is in June 2024::Table 1::D20 (where row 20 is a footer row) then the formula is
=June 2024::Table 1::D20
The formula might have started out pointing at cell D3, not D20, but as the table grew, the footer row kept moving down and the formula kept pointing to it.
If the balance is in whatever the bottom row happens to be of the last month's table, it is a more complicated formula that has to determine what that last data row is.
If in the last row but it is not a footer row:
=INDEX(June 2024::Table 1::D,ROWS(June 2024::Table 1::D))
If not in the last row (i.e., there might be blank rows below it), a lookup doing a bottom-to-top search might be the best solution
=XLOOKUP(REGEX(".+"),June 2024::Table 1::D,June 2024::Table 1::D,"No data available",2,−1)
Transferring cell values from one Numbers sheet to another