Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!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
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])