Hello, I am looking to turn a string into multiple rows of data.
For example, my data is:
ID STR
100 ABC~DEF~GHI~JKL~MNO~PQR~STU~VWZ~YZ
I would like to take the row above and create rows delimited by "~" to get the result:
ID STR
100 ABC
100 DEF
100 GHI
100 JKL
100 MNO
100 PQR
100 STU
100 VWZ
100 YZ
Is it possible to do this?