Forum Discussion
Don't want cell references to update to another worksheet.
Hi, I have worksheet B that copies cell data from worksheet A. Every time I insert a row in sheet A, sheet B is updated and then the data from the newly inserted row in sheet A doesn't show up in sheet B. How can I make some sort of an absolute cell reference in sheet B that won't update when the row is inserted in sheet A?
Thanks.
5 Replies
- MrmusickCopper Contributor
ExcelExciting Thanks for looking into this. I attached the sheet. Maybe another way of looking at it is to insert a row in the 'contact history' sheet whenever I add a new contact in 'person data'.
The problem is that when I add a new person (row) in 'person data' , I need to manually insert a row and update the 'contact history' sheet to include that person. How can I make this happen automatically?
Thanks for your help.
- JMB17Bronze ContributorIn contact history, cell A2, try:
=INDEX('Person Data'!$F$2:$F$68,ROWS(A$2:A2))
Then, copy/paste special - formula down your column.