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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello. I have a measure in dax that selects the value of the transaction type, the tranaction name, and the transaction time of a given row from a table visual. The point of this is to determine the number of distinct products that was purchased that has the same transaction type, same transaction name and was purchased within two minutes of each other.
The measure goes like this:
var selectTransactionType = SelectedValue(Table[transactionType])
var selectTransactionName = SelectedValue(Table[transactionName])
var selectTime = SelectedValue(Table[time])
return
Calculate(DISTINCTCOUNT(Table[product]), ALL(Table), selectTransactionType = Table[transactionType]), selectTransactionName = Table[transactionName], ABS(Table[time] - selectTime) <= TIME(0,2,0))
This issue with this is that there can be multiple of the same products, with the same transaction type, but a different transaction name and time. I only want to display the maximum value for that paticular product. Right now that measure breaks the calculation down to show me the value of distinct products for that particular transaction name and time. If someone knows a way to just display the maximum value for that particualr product accross all the different transaction name and time that would be great. Thanks
Please provide sample data (with sensitive information removed) that covers your issue or question completely, in a usable format (not as a screenshot). Leave out anything not related to the issue.
https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...
Please show the expected outcome based on the sample data you provided.
https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
28 | |
18 | |
15 | |
7 | |
6 |