March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello Power BI community,
I have an interesting formula that I'm trying to write. So we deal with daily transactions and have a model in Analysis Services that we get our data from. We were trying to figure out what our max transactions were for a given day of the week. The following DAX gives that information perfectly.
Max transactions per Day =
MAXX(
KEEPFILTERS(VALUES('Period Daily'[Day Date])),
CALCULATE([Total Transaction Count])
)
I take that and put it on a visual with Day of Week from our Period Dimension and we get:
Now I would like to be able to display what date these transactions occured on and I am stumped. I could think of a way to do it in Tableau with LOD calcs, but I need to be able to use this in Power BI.
Any help would be greatly appreciated.
You can use a measure like this to get the date with max transactions:
Date with Max Transactions = FIRSTNONBLANK ( TOPN ( 1, KEEPFILTERS ( VALUES ( 'Period Daily'[Day Date] ) ), [Total Transaction Count] ), 0 )
There is an article containing this pattern here.
I left in the KEEPFILTERS as I assume if it was required in the context in which you use your original measure, it may be required here as well.
Regards,
Owen
how is the [Total Toll Count]) measure calculated?
if I understand the logic correctly - 179786 for Sunday means that out of many sundays there was one with this many transactions, correct?
If so somehing with LOOKUPVALUE may work
It is a measure in our transaction table. Sorry does that answer the question?
Hi @Bstylee470,
I think @Stachu was asking for the formula of the [Total Toll Count] measure. And for his second question, 79786 for Sunday means that out of many sundays there was one with this many transactions. Is this right?
Also if it is possible, please share us your pbix file with One Drive or Google Drive. So that we can know your actual situation and make some tests. If you can't, please share us some sample data which can help us repro your issue.
Thanks,
Xi Jin.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
89 | |
84 | |
70 | |
51 |
User | Count |
---|---|
206 | |
143 | |
97 | |
79 | |
68 |