Forum Discussion
trk26
5 years agoFrequent Visitor
Cost per Unit Measure
Hello - I would like to create a measure that calculates the line item amount per Truckwashes sold for each month and have struggled to . The line item measure is: Net Amt = CALCULATE(SUM('erbPos...
amitchandak
Super User
5 years agotrk26 , Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
Try like
Net Amt for Truckwashes Sold =
CALCULATE(
[Net Amt],
filter('erbPostedTrxv2', 'erbPostedTrxv2'[Line Item] IN { "Truckwashes Sold" })
)