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
yawerkhan
New Member

Currnecy Converting Filter

hi Team,

 

i have a report in Dollars, and i need to create a filter to select if i need to see all values in Dollars as is, OR convert it to Euros if i select euros.

i can have another table with the conversion rates, but can't find a way to do that automatically?

 

offcourse i don't need to create new columns in Euros as i won't be able to filter on columns, or can i?

1 ACCEPTED SOLUTION
v-jayw-msft
Community Support
Community Support

Hi @yawerkhan ,

 

Please check following steps as below.

1# Create a conversion rates table and add Currency as slicer.

1.PNG

2# Create a measure as below.

Measure = IF(NOT(ISFILTERED('conversion rates'[Currency])),SELECTEDVALUE('Table'[sales]),SELECTEDVALUE('Table'[sales])*SELECTEDVALUE('conversion rates'[rates]))

Result would be shown as below.

2.PNG3.PNG4.PNG

 

Best Regards,

Jay

Community Support Team _ Jay Wang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

View solution in original post

2 REPLIES 2
v-jayw-msft
Community Support
Community Support

Hi @yawerkhan ,

 

Please check following steps as below.

1# Create a conversion rates table and add Currency as slicer.

1.PNG

2# Create a measure as below.

Measure = IF(NOT(ISFILTERED('conversion rates'[Currency])),SELECTEDVALUE('Table'[sales]),SELECTEDVALUE('Table'[sales])*SELECTEDVALUE('conversion rates'[rates]))

Result would be shown as below.

2.PNG3.PNG4.PNG

 

Best Regards,

Jay

Community Support Team _ Jay Wang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.
amitchandak
Super User
Super User

Create another measure in Euro

For that get the rate in your table and create another euro column

Euro Rate column in transaction table = maxx(filter(rate,rate[date]=transaction[date], rate[currency]="EURO"), rate[rate])

Euro Amt transaction = [Euro Rate column in transaction table]*[Value in Dollor]

 

 

for measure slicer refer

https://community.powerbi.com/t5/Desktop/Cannot-use-measure-in-slicer/td-p/166909

https://www.youtube.com/watch?v=gYbGNeYD4OY

 

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.