Combine multiple columns with values into another column

Hi,

Can someone please help me how to combine all column names with value to new column. I tried in virtual column and it shows result. But I wish to show in new column "Combined Column". Also blank value column names should not be shown. 

Example :

First Name: Ram

Middle Name:

Last Name: Raj

Result: First Name: Ram, Last Name: Raj

Solved Solved
0 3 374
1 ACCEPTED SOLUTION

 

 

CONCATENATE(

If(isnotblank([description]),
Concatenate("Description: ", [Description]),""), "; ",
If(isnotblank([size]),
Concatenate("Size: ", [size]),"")

)

View solution in original post

3 REPLIES 3

 

 

CONCATENATE(

If(isnotblank([description]),
Concatenate("Description: ", [Description]),""), "; ",
If(isnotblank([size]),
Concatenate("Size: ", [size]),"")

)

I really appreciate your quick response and understanding skills. Thank you so much. I tested and worked smooth. 

Thank you

Top Labels in this Space