I am integrating excel with an external service which involves receiving data from that service and showing in excel
. I want to be able to store the information I get in the Excel.Range
object. Is there any property of an Excel.Range
object where one can store meta data?
To clarify, like in Outlook an Outlook.TaskItem
has ItemProperties which is an Outlook.ItemProperty
Object. So is there anything similar like that in Excel
?
And if not, then what is the best way to store meta data for a Excel.Range
?
EDIT: I need to persist this meta data information. So if a user saves, closes and then re opens the workbook, I need to be able to extract this meta data from the Excel.Range object (or any other property)