Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi Folks,
I want to build a data model as shown below:
I want a calculated column "Revenue ignoring country" to show total revenue for each supplier(ignoring country-wise split).
How can this be achieved. Currently, I am using the DAC formula:
Solved! Go to Solution.
Hi,
Write this calculated column formula (not measure)
=calculate(sum(data[revenue]),filter(data,data[supplier]=earlier(data[supplier])))
Hope this helps.
Hi,
Write this calculated column formula (not measure)
=calculate(sum(data[revenue]),filter(data,data[supplier]=earlier(data[supplier])))
Hope this helps.
I have same issue but two different tables. couldnt acheive it though. any help please Re: Adding a calculated colum with different aggre... - Microsoft Fabric Community
You are welome.
Hi @Anonymous ,
Try:
CALCULATE( Sum(Tablename[Revenue]), ALLEXCEPT(Tablename, Tablename[Country] ) )
You could use the ALLEXCEPT function instead of the ALL function
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The general problem I believe you are having is that what you have shown is not a data model, it is a table. They are not the same thing. A data model is the collection of tables, relationships and formulas that work together to provide for your reporting needs. This is what you should do
1. Create 3 tables. The one you have, a dimension table for supplier and another for country
2. Join the tables on the supplier and country
3. Hide the columns for supplier and country in your current table
4. Create a matrix that looks like your table in the OP, with supplier and country coming from the dimension tables.
5. Then write a measure (not a column) Rev ignoring country.
CALCULATE( Sum(dataTable[Revenue]), ALL( dimTableCountry[Country] ) ).
https://exceleratorbi.com.au/the-optimal-shape-for-power-pivot-data/