Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register 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.
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 48 | |
| 46 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 70 | |
| 69 | |
| 32 | |
| 27 | |
| 26 |