Forum Discussion
How do I keep cell C5 the data source despite if I insert copy rows?
- Nov 06, 2024
You can achieve this by using the `INDIRECT` function in Excel. The `INDIRECT` function returns the reference specified by a text string. This way, even if you insert or delete rows, the reference will remain constant.
In your case, you want cell C3 to always show what is in cell B5, regardless of any row insertions or deletions. Here’s how you can do it:
1. Go to cell C3.
2. Enter the following formula:
=INDIRECT("B5")
This formula ensures that cell C3 will always display the value of B5, no matter how many rows you insert or delete.
You can achieve this by using the `INDIRECT` function in Excel. The `INDIRECT` function returns the reference specified by a text string. This way, even if you insert or delete rows, the reference will remain constant.
In your case, you want cell C3 to always show what is in cell B5, regardless of any row insertions or deletions. Here’s how you can do it:
1. Go to cell C3.
2. Enter the following formula:
=INDIRECT("B5")
This formula ensures that cell C3 will always display the value of B5, no matter how many rows you insert or delete.
You are awesome! Thank you, this is perfect.