i have a column ACCOUNTS, with data
AC_123,AC_456,AC_676
I need to format it in this order
-['AC_123','AC_456','AC_676']
Hi @nidah ,
The following formula should give you the desired output:
"-['"+Replace([Your_Input_Field],",","','")+"']"
Hope that helps,
Angelos
thanks a lot,
its working for the first row, but for the rest of the rows the (,) & ('') is missing
e.g:
Assuming the problem is a missing comma between account numbers, you could instead use RegEx to tokenize all valid account numbers then use a summarize tool to concatenate.