Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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:
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.
Solved! Go to Solution.
Hi @LucianoS ,
Please try below steps:
1. below is my test table
Table:
Table2:
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.
Please 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.
Hi @LucianoS ,
Please try below steps:
1. below is my test table
Table:
Table2:
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.
Please 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.
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
116 | |
98 | |
87 | |
35 | |
35 |
User | Count |
---|---|
152 | |
98 | |
81 | |
61 | |
55 |