I am trying to automate my excel table as much as possible. Currently is working partially but trying to make it completely automated. The formula I am using is, ="SERVER_"&TEXT((ROW()-2),"00")&"::"&'Sheet 1'!D6 as you see the final output will be a combination of 4 sections 1st and 3rd are static text SERVER_ & :: 4th section 'Sheet 1'!D6is a reference cell value from another sheet 2nd section TEXT((ROW()-2),"00") is where i am seeking ideas. This example is used in cell F3. So as a result it will 01 and which is correct. But if I add a row above this line, I need to go back to this cell (now it will be F4) and change the formula to TEXT((ROW()-3),"00") to get the desired output "01". After that, I need to drag the corner to get 02, 03, 04 and so on to correct the value in the subsequent cell in F column. I am looking to replace with formula with a better one that will still give the value "01", will not change if a row is added or deleted and if I drag the corner it will update the value to 02, 03, 04 and so on.
Thanks in advance!