Forum Discussion
Vnidias
3 years agoRegular Visitor
Max Date from a store visit
Hello guys i´m with case that i have a date used in modelling of a store. My main problem is i need to create a measure that depends from a max date per month ex: For t...
- 3 years ago
Hi Vnidias ,
This is my date table:
Another table:
Relationship between two tables:
Create a measure:
Measure = CALCULATE(MAX('Date'[Date]),FILTER(ALL('Table'),'Table'[Attribute] = SELECTEDVALUE('Table'[Attribute])))You will get the max date of that visit
Best regards,
Yadong Fang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Vnidias
3 years agoRegular Visitor
Guys thanks for the help!