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.
Hola a todos
He intentado buscar la respuesta a este, pero no puedo encontrar la respuesta más im muy nuevo a BI para apreciar su paciencia.
Así que necesito añadir una visualización de tarjetas (que sé hacer 🙂 pero necesita calcular la suma de las 3 columnas;
"HAccountTotal" (Cuando "Estado de Contratación" - "Sin pagar") + "RAccountTotal" (Cuando "RepairStatus" - "No pagado") + "RSTotal" (Cuando "RandSStatus" - "No pagado")
Espero que esto tenga sentido. Gracias
@BlueNoze , Probar como
sumx(Table, switch(true(),Table[Hire Status] = "Unpaid",Table[HAccountTotal],
Table[RepairStatus] = "Unpaid",Table[RAccountTotal],
Table[RandSStatus]= "Unpaid" ,Table[RSTotal],blank()))
Hola @BlueNoze ,
Por favor, intente esto como una medida:
YourMeasure ?
calculate(sum(TableName[HAccountTotal]),TableName[Hire Status] á "Unpaid")
+ calculate(sum(TableName[RAccountTotal]),TableName[RepairStatus] á "Unpaid")
+ calculate(sum(TableName[RSTotal]),TableName[RandSStatus]- "Unpaid")
Respectfully,
Zoe Douglas (DataZoe)
Follow me on LinkedIn at https://www.linkedin.com/in/zoedouglas-data
See my reports and blog at https://www.datazoepowerbi.com/
Funcionó perfectamente Gracias!