Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello, I'm new to Power BI and I've recently come across a scenario where I have two sales columns, each one is a different currency. I would like to have a matrix visual and a slicer on top where you can choose which currency to show. This would show in the matrix the correct income column.
I have [Ventas_MXP] and [Ventas_USD]. These are my sales columns for USD and MXP (Mexican peso).
I would like to select USD in the Currency slicer and filter from the matrix that sales column.
I was thinking of creating a new column and maybe using the Dax function "SELECTEDVALUE"? I'm not sure if this is the best way to do so.
Appreciate the help!
Solved! Go to Solution.
Hi @hctrgrc ,
You have the right idea!
The Table data is shown below:
Please follow these steps:
1. Use the following DAX expression to create a measure
Sales =
VAR _a = SELECTEDVALUE('Table 2'[Currency])
VAR _b = IF(_a = "USD",SUM('Table'[Sales for USD]),SUM('Table'[Sales for MXP]))
RETURN _b
2.Final output
Best Regards,
Wenbin Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you very much! It worked just as you showed!
Hi @hctrgrc ,
You have the right idea!
The Table data is shown below:
Please follow these steps:
1. Use the following DAX expression to create a measure
Sales =
VAR _a = SELECTEDVALUE('Table 2'[Currency])
VAR _b = IF(_a = "USD",SUM('Table'[Sales for USD]),SUM('Table'[Sales for MXP]))
RETURN _b
2.Final output
Best Regards,
Wenbin Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
9 | |
8 | |
8 |
User | Count |
---|---|
14 | |
12 | |
11 | |
11 | |
8 |