Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 |
---|---|
25 | |
12 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
12 | |
12 | |
10 | |
6 |