Forum Discussion

Laurent123's avatar
Laurent123
Regular Visitor
2 years ago
Solved

Sorting data from 3 tables.

Hello, I have 3 tables.   Table A where I have my work orders.   Work order Work order 1 Work order 2 Work order3   Table B with all the parts used during those work ord...
  • Anonymous's avatar
    Anonymous
    2 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])
    
    )