I have a text string like "X1,X2,X3,X4,X5"
and I want to convert it into a list containing X1
, X2
, X3
, X4
, and X5
. I tried using FINDITEM
, but it only works for one item, and with FIND
, I can only get the position of the first comma. How can I achieve this?
Thanks