im still having trouble with this function
Left(Range(ActiveCell).Text, InStr(Range(ActiveCell).Text, ","

- 1)
i want to go to any cell i want and use that function (thats why i have activecell as the cell to be used in the function) but i want to take it and put it anywhere i want, either a specific cell such as A1 or any cell relative to the acctive cell, but i keep getting a range of object global failed
i tried
Left(Range(ActiveCell).Text, InStr(Range(ActiveCell).Text, ","

- 1) = ActiveCell.Offset(0, -1).Range("A1"

.Select
and also
ActiveCell.Offset(0, -1).Range("A1"

.Select =
Left(Range(ActiveCell).Text, InStr(Range(ActiveCell).Text, ","

- 1)
I keep gettin the same error, maybe you could work your code with this I'm not sure, I guess Im still learning VB and im just wrong with my syntax, can you help thanks