Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
SPa
Frequent Visitor

CONCATENATE three column text values, but return blank if any of the three are blank

Hi all!

 

Need to create a new column that combines the text from three columns (same table)

 

Example Data (Column 1-3 are in the same table)

 

Column 1     Column 2     Column 3           Desired Column

 

'Text ZZZ'    'Text XXX'     'Text CCC'          'Text ZZZ Text XXX Text CCC'

                    'Text XXX'     'Text CCC'

'Text ZZZ'     'Text XXX'

'Text ZZZ'                          'Text CCC'

'Text ABC'    'Text ABC'     'Text ABC'          'Text ABC Text ABC Text ABC'

 

Is there dax code to achieve this for a new column?

 

Thanks in advance for your help!

1 ACCEPTED SOLUTION
bsheffer
Continued Contributor
Continued Contributor

=if(<text1> = blank() || <text2> = blank() || <text3> = blank(),
"",

CONCATENATE (CONCATENATE (<text1>, <text2>), <text3>)

)

View solution in original post

2 REPLIES 2
GregVia
Frequent Visitor

I think he wants to concatenate only if all 3 cells are not empty, you could use if:

IF(
column1<>"", IF(
                           column2<>"",IF
                                                  (column1<>"",CONCATENATE (CONCATENATE (<text1>, <text2>), <text3>))))

something of similar, you have to fix the brackets,

 

Best.

 

GV

bsheffer
Continued Contributor
Continued Contributor

=if(<text1> = blank() || <text2> = blank() || <text3> = blank(),
"",

CONCATENATE (CONCATENATE (<text1>, <text2>), <text3>)

)

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.