The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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
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.
@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)
)