The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I want to add a calculation/calculated column *only* to the end of a matrix after, say, the grand total. However, the main problem I'm having is I can seem to get the calcluated column info in there by adding it to values. But then it adds the calcuations all throught the body of the matrix which is what I don't want. I only want it at the end.
Hi @Zarlot531 ,
I am not sure what desired result would you want, could you please share your sample data and desired output screenshots for further analysis? You can also upload sample pbix to OneDrive and post the link here. Do mask sensitive data before uploading.
Please read this post to get your answer quickly: How to Get Your Question Answered Quickly.
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If it is not resolved yet.
Can you please explain with an example. If possible please share a sample pbix file after removing sensitive information.
Thanks
Say your matrix's first column is called ABC, your calculated column is called XYZ, and the default aggregation for the calculated column is SUM, create a measure as
MSR = IF( SELECTEDVALUE( TBL[ABC], "N/A" ) = "N/A", SUM( TBL[XYZ] ) )
When you add that measure to the matrix, it will only display a value in the Totals/Subtotals lines
Note that you can eliminate the calculated column altogether by changing SUM( TBL[XYZ] ) to the calculation being performed