The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 reporting date it should show it only once.
Solved! Go to Solution.
You could create the table like
New Table = SUMMARIZE( 'Old Table', 'Old Table'[Date], 'Old Table'[Site])
You could create the table like
New Table = SUMMARIZE( 'Old Table', 'Old Table'[Date], 'Old Table'[Site])
Thanks !