Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
hi i am new to power bi. i have a table
table name " value entry"
| entry no | entry type | purchase amount | sales amount | cost |
| 1 | purchase | 10 | 0 | 10 |
| 2 | Sale | 0 | 20 | 10 |
| 3 | sale | 0 | 20 | 10 |
| 4 | purchase | 10 | 0 | 10 |
i want to get the profit value, normally i am doing with excel sum if formula to get the total cost and i will deduct the total cost of entry type sale. Please help.
I can't get your logic for Profit exactly. But, to calculate total cost, you can create a measure like:
Total Cost = SUM(ValueEntry[Cost])
For the total cost of entry type sale, you can write a measure like:
Total Cost = CALCULATE(SUM(ValueEntry[Cost]),FILTER(ALL(ValueEntry),ValueEntry[entry type]="Sales"))
Regards,
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 55 | |
| 48 | |
| 38 | |
| 16 | |
| 15 |
| User | Count |
|---|---|
| 83 | |
| 71 | |
| 38 | |
| 28 | |
| 25 |