Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
A_K
Regular Visitor

Removing Filter Context For a Measure

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

1 REPLY 1
lbendlin
Super User
Super User

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...

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.