Forum Discussion
Count matching column values based on visual selection
- 2 years ago
Hi Rince91 ,
I think so that your master date table has relationship with Payroll Date of your Payroll Table. In this type situation, you can use "Userrelationship" function in order to show result based on your second date column.
First of all, you should create relationship between secondary date column and master date table.
Then use this measure ;
# People = CALCULATE(COUNT('Table'[Start Date]),USERELATIONSHIP('Date'[Date],'Table'[Start Date]))the result ;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Rince91 ,
I think so that your master date table has relationship with Payroll Date of your Payroll Table. In this type situation, you can use "Userrelationship" function in order to show result based on your second date column.
First of all, you should create relationship between secondary date column and master date table.
Then use this measure ;
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Great thanks this worked!