hello
my problem
A listbox created on excel 97 (PC) does'nt works on Excel98 (MAC).
VBA on Mac does'nt recognise the property RowSource.
What can i do ?
thanks
So, assuming a range named "datasource", and a listbox named "ListBox1", you
could do something like this:
Dim cell As Range
For Each cell in Range("datasource")
ListBox1.AddItem cell.Value
Next
I assume this is on a UserForm, so I'd suggest using the UserForm_Initialize
event for this.
George