
Hello Wagter,
You can transfer changing values from one worksheet to another in Excel for Android! You can use formulas like =
to reference cells from another worksheet or use functions like INDIRECT
for dynamic referencing. Here are a few methods:
- Using Cell References: In the target worksheet, type
=Sheet1!A1
(replaceSheet1
with the actual sheet name andA1
with the cell you want to reference). This will dynamically update when the source cell changes. - Paste Link Feature: Copy the data from the source worksheet, go to the target worksheet, and use Paste Special > Paste Link to maintain a live connection.
- Using the INDIRECT Function: If you need dynamic referencing, use
=INDIRECT("Sheet1!A1")
. This allows flexibility in referencing cells based on changing conditions. - Using Drop-Down Lists: You can create a drop-down list in the target sheet that pulls data from the source sheet dynamically.
For a detailed guide, check out Microsoft's support page .
Best Regards
David_Johny || Microsoft Community Moderator