A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi, in U8 cell use the below formula and copy down:
=INDIRECT(ADDRESS(ROW(),COLUMN()+3))
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi,
Please refer to the screenshots below for a better understanding!
I want the current Inv. column (U) in my sheet to always refer to the third column to the right (Column X). It works well but if I move any of the cells, then it doesn't work. For example, notice the blank row starting from column X. I want to move it up so there is no gap and cell U20 should say 6772 after I move the rest of the data up. Rather than saying 6772, it says #REF! and cell U21 continues to refer to 6772 but it should refer to the new value of 3 columns to the right- 6818.
Does this make sense? How can I reference the cell location even when moving around data rather than the value of the original cell location? Thank you!!
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
Hi, in U8 cell use the below formula and copy down:
=INDIRECT(ADDRESS(ROW(),COLUMN()+3))
You can use INDEX also as an alternative. Adapting Faysal Farooqui's formula
=INDEX(A:Z,ROW(),COLUMN()+2)
Thank you!!