Forum Discussion
Table Relations - counting the missing rows
- 8 years ago
Hi Mardo,
So your requirement is equal to achieve rows only appear in table1 and rows only appear in table2, right?
Merge(Left Anti and Right Anti) can meet your requirement, click query editor->Merge Queries->Select join kind as left anti or right anti.
After merged, you get two tables that contains only people left the company and only people joined the company.
Finally, apply and create a measure using count(table) to calculate the number of people.
Regards,
Jimmy Tao
- Anonymous8 years ago
You should be able to use the following;
https://msdn.microsoft.com/en-us/query-bi/dax/datediff-function-dax
https://msdn.microsoft.com/en-us/query-bi/dax/today-function-dax
This will calculate the date you need.
You should be able to use the following;
https://msdn.microsoft.com/en-us/query-bi/dax/datediff-function-dax
https://msdn.microsoft.com/en-us/query-bi/dax/today-function-dax
This will calculate the date you need.
Hello Richard,
Thanx a lot for your reply.
Actually I have used the first DAX-formula, and it works well for me :)
Thanx again for you collaboration, it is most appreciated!
Kindest Regards,
Mardo