March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch 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])
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.