Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. 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])
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.