I want to make sure that the bot copies the range with the appropriate column headline (e.g. Company Code). In case the table changes its structure and column E for example does not include the data (company code) anymore.
At the moment I use the following code, with a fixed column range (E).
FileName.Sheet(“Duplicate”).Range(String.Format(“E{0}:E{1}”, Saved.Values(Of Int32)(“1Row”).ToString, Saved.Values(Of Int32)(“LRow”).ToString))
How do I have to change the code?