techytechy
MIS
Hi guys,
Need a function to split concatenated and delimited string into seperate columns
Input to the function is one string like:
Fn('code1-Region1, code1-Region2, code2-region1, .....')
in the above Concatenation is '-' and delimiter is ','
Need output as
OutputTable1
--------------------
codecol
-----------
code1
code2
....
....
---------------------
OutputTable2
----------------------
Regioncol
-----------
Region1
Region2
....
....
-----------------------
Thanks
Need a function to split concatenated and delimited string into seperate columns
Input to the function is one string like:
Fn('code1-Region1, code1-Region2, code2-region1, .....')
in the above Concatenation is '-' and delimiter is ','
Need output as
OutputTable1
--------------------
codecol
-----------
code1
code2
....
....
---------------------
OutputTable2
----------------------
Regioncol
-----------
Region1
Region2
....
....
-----------------------
Thanks