Forum Discussion
Working with 2 Dates
- Anonymous6 years ago
Hi @anthonycarreon,
In you scenario, Userelationship function should help.
Here’s my sample data:
Please check following steps as below:
1. Manage relationships between two tables:
2. Create measures:
no of complete = CALCULATE(COUNT('Table'[complete]),USERELATIONSHIP('Date'[Date],'Table'[complete]))
no of request = CALCULATE(COUNT('Table'[request]),USERELATIONSHIP('Date'[Date],'Table'[request]))
3. Result would be shown as below:
BTW, Pbix as attached. Hopefully works for you.
Best Regards,
Jay
Community Support Team _ Jay Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @anthonycarreon,
In you scenario, Userelationship function should help.
Here’s my sample data:
Please check following steps as below:
1. Manage relationships between two tables:
2. Create measures:
no of complete = CALCULATE(COUNT('Table'[complete]),USERELATIONSHIP('Date'[Date],'Table'[complete]))
no of request = CALCULATE(COUNT('Table'[request]),USERELATIONSHIP('Date'[Date],'Table'[request]))
3. Result would be shown as below:
BTW, Pbix as attached. Hopefully works for you.
Best Regards,
Jay
Community Support Team _ Jay Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Anonymous6 years agoNot applicable
Thanks for you Feedback Sir, 😉
kudos