Dear all, What's the best practice to store the named range information?
The background is: We retrieve data from web service according to some parameters, such as data source, start date and end date. We retrieve the data to a
named range, such as A1:D10. The User can refresh the named range later, or share the workbook with his co-workers.
Currently we store the name of named range, and other parameters, such as data source, start date and end date to the sheet custom property. Later when the workbook is opened again, we read the named range's name, data source, start date and end date from custom property. So the end user can refresh the data of the named range when needed.
Definitely we cannot store the named range address(R1C1) since user may insert/delete rows/columns, so the named range address will be changed. then we have to store the name of named range to the custom property.
But the problem is: the name of named range can also be changed. User can click Formulas --> Name manager to change the name. Currently we have to educate our end user do not do it. But absolutely this is not the best solution.
So could you give me some suggestion? What's the best practice to store the named range information and its associated information? Thanks.