Forum Discussion
JoaPalmer
3 years agoFrequent Visitor
Finding related subtotals
I have this issue where I cannot find the related subtotals. I have a datasource with these three tables, with simplified contents here: Project-Sales - Project-ID - Invoice-value Project-...
- 3 years ago
As per your logic, I think it is simple to solve your problem per below measure,
Subtotal for Each =sumx('Project-Member',related('Project-Sales'[Invoice-value]))Let me know if it works.
TonyZhou1980
Resolver I
3 years agoAs per your logic, I think it is simple to solve your problem per below measure,
Subtotal for Each =
sumx(
'Project-Member',
related('Project-Sales'[Invoice-value])
)
Let me know if it works.
JoaPalmer
3 years agoFrequent Visitor
This was so much easier solution, thank You very much, works perfect! 🙂