Forum Discussion
Need help calculating from three tables
- 8 years ago
Hi,
Create a column in Table M and A as follow:
Month Name = FORMAT([Date/Time of Creation], "MMM") & " " & Year([Date/Time of Creation])
to ensure you have similar formats for Month in all three tables
then create a relationship between all three tables using Month column.
once you created relationship you should create following measure
Records/Employees = Divide((Count('table 1'[Record Number])+Count('table 2'[Record Number])),Sum('table 3'[Number of employees],0)
let me know if it works.
Thank you
Hi,
Create a column in Table M and A as follow:
Month Name = FORMAT([Date/Time of Creation], "MMM") & " " & Year([Date/Time of Creation])
to ensure you have similar formats for Month in all three tables
then create a relationship between all three tables using Month column.
once you created relationship you should create following measure
Records/Employees = Divide((Count('table 1'[Record Number])+Count('table 2'[Record Number])),Sum('table 3'[Number of employees],0)
let me know if it works.
Thank you
Hi,
Thanks for your help. it works!
You are a hero :)