Forum Discussion
misiek5510
Helper III
4 years agoDistinct Values based on report date
Hi, I'm trying to get a result as shown on the basic example below. I need to create a table or just a column to show distinct values within a given month. If site appears more then once withn re...
- 4 years ago
You could create the table like
New Table = SUMMARIZE( 'Old Table', 'Old Table'[Date], 'Old Table'[Site])
johnt75
Super User
4 years agoYou could create the table like
New Table = SUMMARIZE( 'Old Table', 'Old Table'[Date], 'Old Table'[Site])misiek5510
Helper III
4 years agoThanks !