Forum Discussion
need help with a measure
I have 2 tables;
table 1 has a unique reference and 2 dates.
table 2 is a date reference table.
I need to create a measure that will flag a week commencing from the reference table if it is between those 2 dates.
Hoping this sample makes it easier to understand.
Thoughts?
Hi Anonymous ,
You can create measure like DAX below.
Count Reference = CALCULATE(COUNT(Table1[Reference]),FILTER(Table1,Table1[Milestone1]<=MAX(Table2[Date])&&Table1[Milestone2]>=MIN(Table2[Date])))
Then choose Clustered column chart visual to display the result.
Here is my test pbix: https://qiuyunus-my.sharepoint.com/:u:/g/personal/pbipro_qiuyunus_onmicrosoft_com/EaLXhrWy6XFJoNz96ehWPsYB5H8uDAmMKPRdMrLHIWzeaw?e=rvAsqM
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
1 Reply
- v-xicai
Community Support
Hi Anonymous ,
You can create measure like DAX below.
Count Reference = CALCULATE(COUNT(Table1[Reference]),FILTER(Table1,Table1[Milestone1]<=MAX(Table2[Date])&&Table1[Milestone2]>=MIN(Table2[Date])))
Then choose Clustered column chart visual to display the result.
Here is my test pbix: https://qiuyunus-my.sharepoint.com/:u:/g/personal/pbipro_qiuyunus_onmicrosoft_com/EaLXhrWy6XFJoNz96ehWPsYB5H8uDAmMKPRdMrLHIWzeaw?e=rvAsqM
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.