Hi All, I'm trying to delimit a var with different counts of values separated by ','. I start with a table that looks like this: CustomerID Event_List 123 10,12,100,110,121 456 100,117,121,123,124,000 786 181, 444, 656 The next step I need to do is this delimit the values into different vars. I can use the SCAN function but there are different number counts in each var so I can specify specific positions. CustomerID Event_List Var1 Var2 Var3 Var4 Var5 Var6 123 10,12,100,110,121 10 12 100 110 121 456 100,117,121,123,124,000 100 117 121 123 124 000 786 181, 444, 656 181 444 656 Then I need to transpose them and apply a format (using just ID 456): CustomerID Event_List 456 100 456 117 456 121 456 123 456 124 456 0 CustomerID Event_List 456 Click 456 Click2 456 Buy 456 Order 456 Click Out 456 Exit Then I need to Concatenate them back together with the format applied. CustomerID Event_Path 456 Click, Click2, Buy , Order, Click Out , Exit Any help will be greatly appreciated!
... View more