Concatenate enumlist

Hi, i want to concatenate in a virtual column [myVirtualColumn] , each value of the enum_list column [myColumn] to a simple text for example “x”
if i have this value
[myColumn] = ( 1,4,6,8 )
i want [myVirtualColumn] to be : ( x1,x4,x6,x8 )

i tried the formula : concatenate ( “x”, [myColumn])
but the result is x1 ,4,6,8
how i can do ?

Solved Solved
0 3 464
1 ACCEPTED SOLUTION

Try it like IFS(ISNOTBLANK([MyColumn]),“x”)&SUBSTITUTE(CONCATENATE([MyColumn])," , “,” , x")

View solution in original post

3 REPLIES 3

Try it like IFS(ISNOTBLANK([MyColumn]),“x”)&SUBSTITUTE(CONCATENATE([MyColumn])," , “,” , x")

Thanks You, it works fine !

Your welcome

Top Labels in this Space