The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi, Is it possible to include the distinct min date value in a summarize measure?
Here is my code:
Countx(
Summarize(
'Table',
'Table'[Name],
min('Table'[Date]),
'Table'[Age]),
[Measure]
)
Obviously, this won't work but the table is set up where there can be multiple dates for each distinct name and I'm only trying to group each column with the minimum date value. Is that possible?
Thank you.
Solved! Go to Solution.
Is this what you are looking for?
Countx( FILTER(
Summarize(
'Table',
'Table'[Name],
'Table'[Date])
'Table'[Age]),'Table'[Date]=min('Table'[Date])),
[Measure]
)
----------
or
Countx( FILTER(
Summarize(
'Table',
'Table'[Name],
'Table'[Date])
'Table'[Age]),'Table'[Date]=STARTOFMONTH('Table'[Date],0)),
[Measure]
)
Is this what you are looking for?
Countx( FILTER(
Summarize(
'Table',
'Table'[Name],
'Table'[Date])
'Table'[Age]),'Table'[Date]=min('Table'[Date])),
[Measure]
)
----------
or
Countx( FILTER(
Summarize(
'Table',
'Table'[Name],
'Table'[Date])
'Table'[Age]),'Table'[Date]=STARTOFMONTH('Table'[Date],0)),
[Measure]
)
could you pls provide the sample data and expected output?
Proud to be a Super User!