Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Need help with calculated column

Hi,

 

I am new to power BI. Need to create a calculated column in a sales fact table, by dividing unit QTY of the fact table items by the convertion column of the item dimention table. Relationships are created correctly. Help me on this..

 

Isuru

  • Anonymous's avatar
    Anonymous
    6 years ago

    Hi,

    If the relationships are created, you can use RELATED function in DAX to fetch field from item dimension and use it in fact table.

    Below e.g uses Cost field from Product table to calculate the total cost.

     

    Total Cost = SUMX( Sales, Sales[Quantity] * RELATED('Product'[Cost]) )

    Thanks.

4 Replies

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi,

    If the relationships are created, you can use RELATED function in DAX to fetch field from item dimension and use it in fact table.

    Below e.g uses Cost field from Product table to calculate the total cost.

     

    Total Cost = SUMX( Sales, Sales[Quantity] * RELATED('Product'[Cost]) )

    Thanks.

    • Anonymous's avatar
      Anonymous
      Not applicable

      Hi,

       

      I tried below dax function but it didn't work.

       

      Cs = DIVIDE(FactStock[UnitQty],RELATED(DimItem[Conversion]),0)
       
      No errors but giving the same value in the unitQTY column. not dividing by conversion.
       
       
      • Anonymous's avatar
        Anonymous
        Not applicable

        Hi,

        Can you share a sample dataset with the expected result.

        Thanks.

    • Anonymous's avatar
      Anonymous
      Not applicable

      Hi,

       

      Yes Vaibhavdesai. It's working fine. Thanks for the support.

       

      Isuru