Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi all,
I asked how to store additional data per some cells in my Table. I've got the hint, that I can use the .ID property for storing single data. But I need to store various data. I tried something like this: Public Type MyType somedata As Integer someother As String End Type Private Sub test() Dim CellData As MyType CellData.somedata = 42 CellData.someother = "fourty-two" Sheets(1).Cells(2, 2).ID = CellData End Sub But I've got the error: "Only user-defined types defined in public object modules can be coerced to or from a variant or passed to late-bound functions" As I have defined MyType as a Public type, I guess the problem is the "public object module". What is a "public object module" and how can I create one ??? Thanks a lot, Thorsten |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Storing data and its format | Excel Discussion (Misc queries) | |||
storing data | Excel Worksheet Functions | |||
Storing data | New Users to Excel | |||
Storing data between sessions | Excel Programming | |||
Storing non-user data | Excel Programming |