Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Anonymous
Not applicable

Excluir cierto valor de la medida

Tengo una medida que funciona bien:

_m_TotRev = calculate(sum('Table'[Revenue]),ALLEXCEPT('Table','Table'[Employee],'Activity Assignment'[start_date]))

Necesito excluir ciertas filas de 'Tabla' donde un campo no relacionado (es decir, 'Experiencia') - 'Sin experiencia'

He probado varias iteraciones de FILTRO, pero ninguno funciona

2 REPLIES 2
v-diye-msft
Community Support
Community Support

Hola @master_schef

Por favor, proporcione los datos ficticios será más útil.

Si desea filtrar desde una tabla no relacionada, probablemente generaría una tabla calculada y luego la filtraría. similar es a los siguientes mensajes:

https://community.powerbi.com/t5/Desktop/Filter-on-unrelated-table/td-p/54760

Community Support Team _ Dina Ye
If this post helps, then please consider Accept it as the solution to help the other members find it more
quickly.
amitchandak
Super User
Super User

@master_schef , se menciona como otro filtro fuera de allexpect

_m_TotRev calculate(sum('Table'[Revenue]),ALLEXCEPT('Table','Table'[Employee],'Activity Assignment'[start_date]),'Experience'[Experience] ? "No Experience")

O

_m_TotRev calculate(sum('Table'[Revenue]),ALLEXCEPT('Table','Table'[Employee],'Activity Assignment'[start_date]),'Experience'[Experience] <> "No Experience")

O puede agregar una cláusula de filtro adicional si es necesario

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.