Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
I have a table with all the days of the week and some values associated to them - Sales. Basically 2 columns. I just need to show the name of the day with the higher value on the sales column. Ideally would be to show it as a Card.
I can't transform the original query as I need to use other data of the table to show information (A). And I can't have a different query for this as I need to use the same filters I'm using on (A).
Any help on how to solve this?
Thanks!
Ezequiel
Solved! Go to Solution.
Hi @ezequiel
If you have one value against each day, these MEASURES should give you desired result in a CARD
Measure =
CALCULATE (
VALUES ( TableName[Day] ),
FILTER ( ALL ( TableName ), TableName[sales] = MAX ( TableName[sales] ) )
)
Alternate Measure = LOOKUPVALUE ( TableName[Day], TableName[sales], MAX ( TableName[sales] ) )
You may use TOPN Function as well.
Measure = MAXX ( TOPN ( 1, Table1, Table1[Sales], DESC ), Table1[Day] )
Hi Thanks for the help. I customized the measure script to my tables to
Measure = MAXX( TopN (1, Last_30_days_activity, Last_30_days_activity[# of Requests], desc), Last_30_days_activity[weekDay] )
but I'm getting a sintax error....any clue on what is wrong?
Thanks again
Replace commas ( , ) in above formula with semicolons ( ; ).
Hi! didn't work...see attached error. Thanks!
Your original formula seems correct. If convenient, share us the simplified model.
Hi @ezequiel
If you have one value against each day, these MEASURES should give you desired result in a CARD
Measure =
CALCULATE (
VALUES ( TableName[Day] ),
FILTER ( ALL ( TableName ), TableName[sales] = MAX ( TableName[sales] ) )
)
Alternate Measure = LOOKUPVALUE ( TableName[Day], TableName[sales], MAX ( TableName[sales] ) )
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!