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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
LucianoS
Frequent Visitor

Filtrar los resultados de una medida con funcion IF

Estimados, recurro a ustedes por ayuda.

He llegado a resultados a través de una medida. 

Necesito filtrar por un segmentador los resultados de la siguiente medida:

LucianoS_0-1669927228401.png

Estaba intentando a través de Tablas desconectadas pero no tuve éxito.

Ya se que esto puedo lograrlo si fuese una columna dentro de la tabla.

 

Muy agradecido si me pueden ayudar o guiar.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @LucianoS ,

Please try below steps:

1. below is my test table

Table:

vbinbinyumsft_0-1669946726887.png

Table2:

vbinbinyumsft_1-1669946747930.png

2. create measure with below dax formula

Measure = IF(MAX('Table'[Column1])>MAX('Table'[Column2]),"Seguro","Reponer")
Measure2 =
VAR cur_choice =
    SELECTEDVALUE ( Table2[Column1] )
VAR _m = [Measure]
RETURN
    IF ( ISFILTERED ( Table2[Column1] ), IF ( cur_choice = _m, 1 ), 1 )

3. add table visual with Table fields and Measure, add slicer visual with Table2 field, add Measure2 to the table visual filter pane.

vbinbinyumsft_2-1669946937880.png

Animation19.gifPlease refer the attached .pbix file.

 

Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @LucianoS ,

Please try below steps:

1. below is my test table

Table:

vbinbinyumsft_0-1669946726887.png

Table2:

vbinbinyumsft_1-1669946747930.png

2. create measure with below dax formula

Measure = IF(MAX('Table'[Column1])>MAX('Table'[Column2]),"Seguro","Reponer")
Measure2 =
VAR cur_choice =
    SELECTEDVALUE ( Table2[Column1] )
VAR _m = [Measure]
RETURN
    IF ( ISFILTERED ( Table2[Column1] ), IF ( cur_choice = _m, 1 ), 1 )

3. add table visual with Table fields and Measure, add slicer visual with Table2 field, add Measure2 to the table visual filter pane.

vbinbinyumsft_2-1669946937880.png

Animation19.gifPlease refer the attached .pbix file.

 

Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.