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
anithaMallam
Helper III
Helper III

need help

Hi All,

          i need your help on one of the issue which iam facing.

i have created a measure for exchange rate and which i have placed on score card to display the data. i have currency code which has different curency list in one slicer and region in other slicer.when iam selecting  the currency code from one slicer to see the different exchange rate values in score card it is filtering the region as well which i dont want.Currency code should not filter the region.Could someone please help me in this.

 

Regards

Anitha.

3 REPLIES 3
v-eqin-msft
Community Support
Community Support

Hi @anithaMallam 

 

Sorry to disturb you again...

 

Could you tell me if your problem has been solved? If it is, kindly Accept it as the solution. More people will benefit from it. Or you are still confused about it, please provide me with more details about your table and your problem or share me with your pbix file from your Onedrive for Business. 

 

Thank you.😀

 

Best Regards,
Eyelyn Qin

v-eqin-msft
Community Support
Community Support

Hi @anithaMallam ,

As @amitchandak said, you could set interaction as "none" like this:
11.11.2.1.gif

Or you could create a new table for slicer (do not build relationship between two tables):

forSlicer =
DISTINCT ( ALLSELECTED ( 'Table'[Currency code] ) )

then use the following formula to match the selected value:

Measure =
CALCULATE (
    MAX ( 'Table'[Rate] ),
    FILTER (
        'Table',
        'Table'[Currency code] = SELECTEDVALUE ( forSlicer[Currency code] )
    )
)

  11.11.2.2.gif

Here is the pbix file.

 

Did I answer your question ? Please mark my reply as solution. Thank you very much.
If not, please upload some insensitive data samples and expected output.

 

Best Regards,
Eyelyn Qin

amitchandak
Super User
Super User

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.