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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
v-binbinyu-msft
Community Support
Community Support

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
v-binbinyu-msft
Community Support
Community Support

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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