The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I have three calculated columns, Customers, Accounts and Staff I want to concatenate into one ccolumn. I created this calculated column, but I notice the commas still appear if one of the three tables is blank.
Attendees |
John Smith, , |
Solved! Go to Solution.
@av9 , you can use if to control
Attendees = Appointments[Customers] & if(isblank(Appointments[Accounts]),"" , ", " & Appointments[Accounts] )& if(isblank(Appointments[Staff]) , "" ,", " & Appointments[Staff])
Hi @av9
Try this
Attendees = Appointments[Customers] & if(len(Appointments[Accounts])>0,", " & Appointments[Accounts] , "") & if(len(Appointments[Staff])>0, ", " & Appointments[Staff], "")
Phil
Proud to be a Super User!
Hi @av9
Try this
Attendees = Appointments[Customers] & if(len(Appointments[Accounts])>0,", " & Appointments[Accounts] , "") & if(len(Appointments[Staff])>0, ", " & Appointments[Staff], "")
Phil
Proud to be a Super User!
Hi @av9 ,
Can you try this
Text.Combine(List.Select({Appointmnets[Customers],Appointmnets[Accounts],Appointmnets[Staff]}, each _<> "" and _ <> null)," , ")
Hope this helps.
Cheers,
-Namish B
@av9 , you can use if to control
Attendees = Appointments[Customers] & if(isblank(Appointments[Accounts]),"" , ", " & Appointments[Accounts] )& if(isblank(Appointments[Staff]) , "" ,", " & Appointments[Staff])