I am using an INDEX MATCH with INDIRECT to pull in Install Dates from another sheet based on Account Numbers on both sheets
=INDEX(INDIRECT("'Master list'!F$2:F$492"),MATCH('Master Tracker'!$A50,INDIRECT("'Master list'!K$2:K$492"),0),1)
We get the updated dates weekly on a sheet called Master list. So my approach was to add the Master list sheet my workbook with Master Tracker using INDIRECT so I could remove the Master list and replace it and the formula still work. And it is working fine. Until I sort.
I am putting the above formula in B50, right next to A50, the account number. Once I sort, the reference to the Account Number changes independently of the Account Number. So the account number in A50 when sorted becomes A60, but the reference in B60 is somehow updated to reference against A67. Any idea where I am going wrong?
=INDEX(INDIRECT("'Master list'!F$2:F$492"),MATCH('Master Tracker'!$A50,INDIRECT("'Master list'!K$2:K$492"),0),1)
We get the updated dates weekly on a sheet called Master list. So my approach was to add the Master list sheet my workbook with Master Tracker using INDIRECT so I could remove the Master list and replace it and the formula still work. And it is working fine. Until I sort.
I am putting the above formula in B50, right next to A50, the account number. Once I sort, the reference to the Account Number changes independently of the Account Number. So the account number in A50 when sorted becomes A60, but the reference in B60 is somehow updated to reference against A67. Any idea where I am going wrong?