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.
Soy nuevo en PowerBI, así que por favor perdone mi pregunta de novato aquí. Tengo dos mesas Computadoras y Software con una relación de uno a muchos. Estoy tratando de averiguar cómo determinar si un ComputerID en la tabla Equipos tiene Adobe Reader listado en la tabla Software y, si es así, devuelve un valor personalizado y si no devuelve otro valor.
Computadoras
ComputerID | DeviceName | NewColumn |
1 | Portátil1 | |
2 | Portátil2 | |
3 | Portátil3 |
Software
ComputerID | SoftwareSuite |
1 | Adobe Reader |
1 | Google Chrome |
2 | Google Chrome |
2 | AutoCAD |
3 | Adobe Reader |
Solved! Go to Solution.
Hola @escott0699
crear una medida
NewColumn = IF(CALCULATE(COUNTROWS(Software), Software[SoftwareSuite]="Adobe Reader") > 0, "custom value", "another value")
Hola @escott0699
crear una medida
NewColumn = IF(CALCULATE(COUNTROWS(Software), Software[SoftwareSuite]="Adobe Reader") > 0, "custom value", "another value")
Gracias, crear una medida no parecía funcionar, pero usar esa fórmula en crear una nueva columna funcionó bien.
gracias de nuevo