Forum Discussion

AJM95's avatar
AJM95
Regular Visitor
3 years ago

Card value before any filters applied

Hi there

 

I have a card for a country's ranking last year, and I want to ensure that the 'All' value that displays before any filtering is applied, is the value of the 'global' ranking. At the moment, the card is summing all individual countries giving a total of 293 as the ranking for all, which is fair enough for PowerBI's logic, however I need global to display for all which in fact is 7. Is this possible? 

 

Attached below  is screengrab of current situation. 

Thanks Card value

2 Replies

  • AJM95 , You can disable interaction between card and slicer

    How Interactions Work- Split Page using interactions to compare - https://youtu.be/GIfRKzhMaR4

     

    or try measure like

     

    Global Ranking =
    CALCULATE(
    MIN('Table'[CountryRank]),
    ALL(Table)
    )

     

     

  • AJM95's avatar
    AJM95
    Regular Visitor

    Thanks amitchandak , however I do not want to disable the interactions as I need the card to change and display a value when a country is selected from the 'market' slicer. Essentially, in the table for rank columnn there is a row where country is equal to 'Global' and the rank value is 7. This is the first row in the column, is there a measure I can use to pick up this value and display it, before the slicer is used and then a country's value displays? There is only one row per country.