Forum Discussion
Sorting data from 3 tables.
- 2 years ago
Hi, Laurent123
you can download file click HERE - Anonymous2 years ago
Hi Laurent123
I updated my measure formula and it now shows correctly
Total Price = SUMX( 'Table 2', 'Table 2'[Qty] * RELATED('Table 3'[Price]) )
Hi Laurent123
Here are the three tables you provided, The relationship between them has been properly established
Based on your three tables, you can build such a table in the Report View interface
You can create such a measure to calculate total price per line
Total Price = MAX('Table 2'[Qty])*MAX('Table 3'[Price])
Then you can put this measure into the table
Then you can create a slicer and drag the Work order field into the slicer
This is the result you want, each time you select an option in the slicer, the values in the table will change as well
Best Regards,
Jayleny
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Laurent1232 years agoRegular Visitor
Hello,
THanks for helping.
The Total looks wrong
- Anonymous2 years agoNot applicable
Hi Laurent123
I updated my measure formula and it now shows correctly
Total Price = SUMX( 'Table 2', 'Table 2'[Qty] * RELATED('Table 3'[Price]) )