Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Inventory Value

Hello!   I am currently working on a report with data from an older version of NAV to display infromation about the inventory but I've hit a snag when it comes to displaying the current inventory v...
  • LivioLanzo's avatar
    LivioLanzo
    7 years ago

    you need to relate your tables:

     

    and then the measures are easy

     

    RemainingQuantity = SUM( Transactions[Quantity] )

     

    Value =
             SUMX(
                     Items,

                     [RemainingQuantity] * Items[UnitPrice]
              )