Forum Discussion
SJHA
Helper I
3 years agoLatest date across two tables using DAX
I have two tables: Project: [Project_title] [Project_module] A A A B A C B D B E C ...
- 3 years ago
Hi SJHA ,
Try the below calculated measure:Title Level Latest Date =
CALCULATE(
MAX(Usage[Latest Date]),
ALLEXCEPT(Project, Project[Project Title])
)Here's the output:
Give a Thumbs Up if this post helped you in any way and Mark This Post as Solution if it solved your query !!!
Proud To Be a Super User !!!
LinkedIn - 3 years ago
Hi SJHA ,
The measure I mentioned earlier would still work:Can you change the relationship to below?
If relationship can't be shared, can you share the current relationship between these 3 tables please.
Give a Thumbs Up if this post helped you in any way and Mark This Post as Solution if it solved your query !!!
Proud To Be a Super User !!!
LinkedIn
Anand24
Super User
3 years agoHi SJHA ,
Try the below calculated measure:
Title Level Latest Date =
CALCULATE(
MAX(Usage[Latest Date]),
ALLEXCEPT(Project, Project[Project Title])
)
Here's the output:
Give a Thumbs Up if this post helped you in any way and Mark This Post as Solution if it solved your query !!! Proud To Be a Super User !!! |
SJHA
Helper I
3 years ago- Anand243 years ago
Super User
SJHA ,
Can you try adding CROSSFILTER function in your query? Currently the filtering is not getting hit since the relationship is uni-directional.
Give a Thumbs Up if this post helped you in any way and Mark This Post as Solution if it solved your query !!!
Proud To Be a Super User !!!
LinkedIn