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
notski
Regular Visitor

Custom column calculation

Hey folks,

 

I'm fairly new to Power BI so I appreciate all the help I can get 🙂

 

I have two tables, one with a sales ledger (Sales) and the other containing product information (Products). Each row on Sales details the Date, Item Number, Sales Amount, Sales Quantity and Cost Amount, and the rows in Products contain Item Number and Unit Cost (among other things).

 

Due to issues with the ERP I'm working with, Cost Amounts for some transactions on the Sales table are outrageously wrong and can't be corrected in the source data, so I need to calculate a corrected cost amount for transactions which meet a certain criteria (let's assume Sales Amount - Cost Amount < 0). For transactions meeting the criteria, I need to fetch the Unit Cost from the Products table and multiply that by Sales Quantity. Transactions which don't meet the criteria should be left as they are.

 

What would be the best way to go about this? My initial idea was to create a custom column (let's call it Corrected Cost) on the Sales table which evaluates the criteria and either calculates a new cost or inputs the existing Cost Amount. I'm just not sure how to make it happen 😄

 

Thanks in advance!

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

The exact details are going to depend on your data. But, let's say that Sales and Product tables are related on ProductID. You could do something like this:

 

Column = IF(([Sale Amount]-[Cost Amount])>0,[Sale Amount],RELATED('Products'[Price]))

Something along those lines.


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

1 REPLY 1
Greg_Deckler
Super User
Super User

The exact details are going to depend on your data. But, let's say that Sales and Product tables are related on ProductID. You could do something like this:

 

Column = IF(([Sale Amount]-[Cost Amount])>0,[Sale Amount],RELATED('Products'[Price]))

Something along those lines.


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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.