Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
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 |
John Smith, , |
Solved! Go to Solution.
@av9, puede utilizar si controlar
Asistentes - Citas[Clientes] & if(isblank(Appointments[Accounts]),"" , ", " & Appointments[Accounts] )& if(isblank(Appointments[Staff]) , "" ,", " & Appointments[Personal])
Hola @av9
Prueba esto
Attendees = Appointments[Customers] & if(len(Appointments[Accounts])>0,", " & Appointments[Accounts] , "") & if(len(Appointments[Staff])>0, ", " & Appointments[Staff], "")
Phil
Proud to be a Super User!
Hola @av9
Prueba esto
Attendees = Appointments[Customers] & if(len(Appointments[Accounts])>0,", " & Appointments[Accounts] , "") & if(len(Appointments[Staff])>0, ", " & Appointments[Staff], "")
Phil
Proud to be a Super User!
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
@av9, puede utilizar si controlar
Asistentes - Citas[Clientes] & if(isblank(Appointments[Accounts]),"" , ", " & Appointments[Accounts] )& if(isblank(Appointments[Staff]) , "" ,", " & Appointments[Personal])
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.