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 467
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