Monitor cell value and copy it to another cell

2019-03-06 02:18发布

I would like to know how to monitor a cell value and make this value always updating on some other cell.

Until now i was using the = sign and then choosing the cell i want to monitor.

The problem is that the row/cell i'm monitoring is constantly updating due to another vba script, and when that happens i get REF error.

e.g.

On the M8 cell (sheet1) i have this simple formula to monitor the value in the summary sheet on the A3 cell:

=summary!A3 (works fine displaying the cell value)

But after the rows are deleted OR updated..i get this behaviour on the M8 cell in the sheet1.

=summary!#REF!

Does anyone know how can i lock the formula so it never changes?

Thanks

1条回答
三岁会撩人
2楼-- · 2019-03-06 02:46

Try =INDIRECT("summary!A3") - this will ALWAYS refer to A3 regardless of any Sheet changes.

查看更多
登录 后发表回答