Forum Discussion
Anonymous
9 years agoNot applicable
Ratio between two tables
Hi This is my first post and question, hope someone helps me to resolve my query. I have two different tables, Table1 (Employee Separations) and Table2 (Headcount). I have imported both table...
- 9 years ago
Anonymous
You can create a Measure:
Attrition = Sum(Separations[Separations])/SUM(HeadCount[HeadCount])
And use it in a table visual
Vvelarde
9 years agoCommunity Champion
Anonymous
You can create a Measure:
Attrition = Sum(Separations[Separations])/SUM(HeadCount[HeadCount])
And use it in a table visual
Anonymous
9 years agoNot applicable
Thank you Vvelarde it worked for me... :-) i was just missing a single bracket to close the first argument....