Forum Discussion
robertspot
8 years agoNew Member
Get minimum value for a specific Id
Hello, I want to show the minimum date value for an specific Id, and this value should change on depends of the filter dates selected by the user. I tried several solutions (index, row_number...
- 8 years ago
I think a simple MEASURE like
=MIN(TABLENAME[Date]) should work here
May be i am missing something
Zubair_Muhammad
8 years agoCommunity Champion
I think a simple MEASURE like
=MIN(TABLENAME[Date]) should work here
May be i am missing something
robertspot
8 years agoNew Member
Hi Zubair_Muhammad,
Thanks for your reply.
I’m afraid it won’t work because I need the min date, but for each ID. That means, if no filter is applied the results would be:
- ID: 1; Date: 01/01/2018
- ID: 2; Date: 02/01/2018
- ID: 3; Date: 04/01/2018
Regards