Forum Discussion
Create line chart that counts dates from two columns in data set and displays count by date
- 4 years ago
Hi, vincenardo ;
You could create two measures as follows:
count of DteOnHold = CALCULATE(COUNT([DteOnHold]),FILTER(ALL('Table'),[DteOnHold]=MAX('Calendar Relative'[Date])))count of DteOnHold = CALCULATE(COUNT([DteOnHold]),FILTER(ALL('Table'),[DteOnHold]=MAX('Calendar Relative'[Date])))In addition , two tables don't have relationship.
The final output is shown below:
If not right ,can you share the output and more details you want to achieve?
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, vincenardo ;
You could create two measures as follows:
count of DteOnHold = CALCULATE(COUNT([DteOnHold]),FILTER(ALL('Table'),[DteOnHold]=MAX('Calendar Relative'[Date])))count of DteOnHold = CALCULATE(COUNT([DteOnHold]),FILTER(ALL('Table'),[DteOnHold]=MAX('Calendar Relative'[Date])))
In addition , two tables don't have relationship.
The final output is shown below:
If not right ,can you share the output and more details you want to achieve?
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This works perfectly! Thanks!