Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi all,
It seems pretty basic, but I cant seem to figure it our. I have a table sorted by month with the salary costs and a column per office (so Column A is month, Column B New York, Column C Washington. No I want to add a column D for the total salary Costs. Each Column is uploaded in a different dataset. Any easy way to do this?
Solved! Go to Solution.
Hi @Reimer ,
Like this?
Measure = MAX(Sheet1[New York]) + MAX(Sheet1[Washington])
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Reimer ,
Like this?
Measure = MAX(Sheet1[New York]) + MAX(Sheet1[Washington])
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Reimer , You can sum that up and analyze across common dimension
Total Salary = Sum(Table1[ColumnA])+Sum(Table2[ColumnB])+Sum(Table3[ColumnC])+Sum(Table4[Columnd])
Or merge the data sources
https://radacad.com/append-vs-merge-in-power-bi-and-power-query
@Reimer ,
TRy adding the all columns like below:
Total Salary Measure = Sum(Table[ColumnA])+Sum(Table[ColumnB])+Sum(Table[ColumnC])
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.