Forum Discussion
Anonymous
5 years agoNot applicable
Help Please with Calculated Table Logic
Hi all, Looking for some help to think through this dax calculation I'm trying to come up with: I have robot log data based on queues for a couple of months. Each line item is a transaction o...
- 5 years ago
Maybe I see what you mean. Please try the DAX below.
Table = FILTER('Table (2)', 'Table (2)'[Date]=CALCULATE(MAX('Table (2)'[Date]),ALLEXCEPT('Table (2)','Table (2)'[Key])) &&CALCULATE(COUNT('Table (2)'[Key]),ALLEXCEPT('Table (2)','Table (2)'[Key]))>1)For more details, please refer to the sample .pbix.
PaulDBrown
5 years agoCommunity Champion
Sorry, I should have been more specific...Please provide sample data in table format (as in data). We cannot work on an image. Thanks!
Anonymous
5 years agoNot applicable
Will a CSV file work?
- V-lianl-msft5 years agoCommunity Support
Maybe I see what you mean. Please try the DAX below.
Table = FILTER('Table (2)', 'Table (2)'[Date]=CALCULATE(MAX('Table (2)'[Date]),ALLEXCEPT('Table (2)','Table (2)'[Key])) &&CALCULATE(COUNT('Table (2)'[Key]),ALLEXCEPT('Table (2)','Table (2)'[Key]))>1)For more details, please refer to the sample .pbix.