Forum Discussion
MyPowerbi2020
Helper IV
6 years agoNeed help with Dax
Dear Experts,
I have the data like the above , user has a date slicer . The requirement is if user selects a date or dates that should give the below table :
Email , MAX value of clicked.
Thanks.
15 Replies
- AnonymousNot applicable
I would use the below
Measure = CALCULATE(MAX(Table[Clicked]),ALLEXCEPT('Table','Table'[EMAIL]),'Table'[Date]))The above will give the max number of clicks for every row based on email and date.- MyPowerbi2020
Helper IV
Hi Pranit, Thanks for the reply , but the measure is always returning 1 , irrespective of dates.
Thanks.
- AnonymousNot applicable