Originally Posted by KingTamo When testing the code I have got an error Code: Sub Test() Astr = Split(Cells(1, Along).Address, "$") MsgBox Astr End Sub Split returns an array of values, not a single value, so you have to specify which member of the array you want... MsgBox Astr(1)
Sub Test() Astr = Split(Cells(1, Along).Address, "$") MsgBox Astr End Sub
View Tag Cloud
Forum Rules
Bookmarks