Forum Discussion
LiorG
9 years agoFrequent Visitor
Cost Overview
Hello all, How do I create something like the picture attached, assuming I use SQL data base and have 4 columns: 1- Total Fee, 2- Third party, 3- Travel Expenses, 4- Other any ideas? ...
Vvelarde
9 years agoCommunity Champion
If the tables are related you can use a Measure to this calculation.
NetFee = Calculate(sum('TABLEA'[TotalFee])-sum('TABLEX'[ThirdParty])-sum('TABLEZ'[TravelExpenses])-sum('TABLEW'[OtherExpenses]))