Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi!
How can I add filters like this?
So when I choose EUR it shows the value in EURO, and when I choose RON it shows value in RON?
Thanks
Solved! Go to Solution.
Hi @Anonymous ,
See the below ,for a sample:
base table(default value is EUR):
Create a slicer table:
Then use the below measure:
valuenew =
IF (
SELECTEDVALUE ( Slicer[type] ) = "EUR",
"€" & ""
& MAX ( 'Table'[Value] ),
IF (
SELECTEDVALUE ( Slicer[type] ) = "RON",
"lei." & ""
& 4.95 * MAX ( 'Table'[Value] ),
BLANK ()
)
)
Then create visual:
Output:
Did I answer your question? Mark my post as a solution!
Best Regards
Lucien
Hi @Anonymous ,
See the below ,for a sample:
base table(default value is EUR):
Create a slicer table:
Then use the below measure:
valuenew =
IF (
SELECTEDVALUE ( Slicer[type] ) = "EUR",
"€" & ""
& MAX ( 'Table'[Value] ),
IF (
SELECTEDVALUE ( Slicer[type] ) = "RON",
"lei." & ""
& 4.95 * MAX ( 'Table'[Value] ),
BLANK ()
)
)
Then create visual:
Output:
Did I answer your question? Mark my post as a solution!
Best Regards
Lucien
@Anonymous , Assume you have two measure one which have value in EURO and one in RON
Then create a measure slicer using independent table and use that
measure slicer
https://www.youtube.com/watch?v=b9352Vxuj-M
https://community.powerbi.com/t5/Desktop/Slicer-MTD-QTD-YTD-to-filter-dates-using-the-slicer/td-p/500115
https://radacad.com/change-the-column-or-measure-value-in-a-power-bi-visual-by-selection-of-the-slicer-parameter-table-pattern
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 46 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |