Storing various data in .ID property
Hi Frank,
the range object has no ID property
Sub Test()
Dim rng As Range
Set rng = Range("A1")
rng.ID = "ID Test"
MsgBox rng.ID
End Sub
---
Regards,
Norman
"Frank Kabel" wrote in message
...
Hi Thorsten
the range object has no ID property. So this won't work. some ideas how to
store data for a specific cell:
- create a comment programmatically
- use defined names
- use a hidden worksheet
|