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

See when key Fabric features will launch and what’s already live, all in one place and always up to date. Explore the new Fabric roadmap

Reply
av9
Helper III
Helper III

Eliminar comas en columnas concatenadas

Tengo tres columnas calculadas, Clientes, Cuentas y Personal que quiero concatenar en una columna. He creado esta columna calculada, pero noto que las comas siguen apareciendo si una de las tres tablas está en blanco.

Asistentes - Citas[Clientes] & ", " & Citas[Cuentas] & ", " & Citas[Personal]
Así que mi columna se ve así si sólo hay un campo de cliente disponible.
Asistentes
John Smith, ,
¿cómo elimino las comas cuando no es necesario?
2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@av9, puede utilizar si controlar

Asistentes - Citas[Clientes] & if(isblank(Appointments[Accounts]),"" , ", " & Appointments[Accounts] )& if(isblank(Appointments[Staff]) , "" ,", " & Appointments[Personal])

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

PhilipTreacy
Super User
Super User

Hola @av9

Prueba esto

Attendees = Appointments[Customers]   &  if(len(Appointments[Accounts])>0,", " &  Appointments[Accounts] , "") & if(len(Appointments[Staff])>0, ", " & Appointments[Staff], "")

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


View solution in original post

3 REPLIES 3
PhilipTreacy
Super User
Super User

Hola @av9

Prueba esto

Attendees = Appointments[Customers]   &  if(len(Appointments[Accounts])>0,", " &  Appointments[Accounts] , "") & if(len(Appointments[Staff])>0, ", " & Appointments[Staff], "")

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


Anonymous
Not applicable

Hola @av9 ,

¿Puedes probar esto

Text.Combine(List.Select({Appointmnets[Customers],Appointmnets[Accounts],Appointmnets[Staff]}, each _<> "" and _ <> null)," , ")

Espero que esto ayude.

Salud

-Namish B

amitchandak
Super User
Super User

@av9, puede utilizar si controlar

Asistentes - Citas[Clientes] & if(isblank(Appointments[Accounts]),"" , ", " & Appointments[Accounts] )& if(isblank(Appointments[Staff]) , "" ,", " & Appointments[Personal])

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
May PBI 25 Carousel

Power BI Monthly Update - May 2025

Check out the May 2025 Power BI update to learn about new features.

May 2025 Monthly Update

Fabric Community Update - May 2025

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

Top Solution Authors