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.
@Ben81 Try:
Measure =
COUNTROWS
DISTINCT(
SELECTCOLUMNS(
SUMMARIZE (
'Table',
'Table'[ID],
"MaxDate", MAX ( 'Table'[LASTMODIFIEDDATE] )
),
"__ID",[ID]
)
)
)
Thanks mate that worked a treat but can I push my luck a bit more and ask how would that work if I wanted to drop in a USERELATIONSHIP?
I need to create another measure identical to the above but based on another date field within the same table and both measures are controlled via date slicer.
Thanks