Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

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

1 ACCEPTED SOLUTION
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.

View solution in original post

4 REPLIES 4
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
Not applicable

Hi,

 

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

 

Isuru

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
Not applicable

Hi,

Can you share a sample dataset with the expected result.

Thanks.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.