Forum Discussion
mikesdunbar
3 years agoHelper I
Weekly billing amounts
Hello, I'm trying to calculate the weekly billing amounts for individuals based on their job title. There are two spreadsheets that cover this. First spreadsheet Includes Job Code and Rate ...
- 3 years ago
Try with this measure:
Amt billed = Sumx(NATURALINNERJOIN(Table1,Table2), 'Billing Rate'[Billing Rate (USD)]*'Hours Worked'[Hours worked])
Uspace87
3 years agoResolver III
Try with this measure:
Amt billed = Sumx(NATURALINNERJOIN(Table1,Table2), 'Billing Rate'[Billing Rate (USD)]*'Hours Worked'[Hours worked])
mikesdunbar
3 years agoHelper I
That did it, thank you!