Forum Discussion
Ashik008
2 years agoFrequent Visitor
Month details from Two diffrent columns
Hi all, I need a help with some calculation I have a table with two date columns ,i need to have monthly count of some details table service id startdate completion date 12345 1/1/2024 ...
- 2 years ago
you need to create a calendar table and create two measures
start count = count('Table'[startdate]) complete count = CALCULATE(COUNT('Table'[completion date]),USERELATIONSHIP('Table'[completion date],'Table 2'[Date]))pls see the attachment below
ryan_mayu
2 years agoSuper User
you need to create a calendar table and create two measures
start count = count('Table'[startdate])
complete count = CALCULATE(COUNT('Table'[completion date]),USERELATIONSHIP('Table'[completion date],'Table 2'[Date]))
pls see the attachment below