Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Anonymous
Not applicable

New calculated Column in Matrix based on output

Hi Experts

 

I have a matrix table, in that based on my output column I need to sum from two columns. could you please help me how to do that.

 

there are three columns selected. Let me know if need any further details

 

In the same matrix table, I need a new column which is CF - FL = Output.

 

CategoryActualsPlanCFFLCF - FL 
CA7997713481176283899932 
CD4981713683125146553024 
CDT5601413483123338595184 
CDPL52788855834127691596230 
CM1883350820112769133 
      
      
ROWCategory    
Column Ver    
ValuesRevenue    
1 REPLY 1
ShaWo
Advocate I
Advocate I

If you are talking about the matrix visualisation, then I think you'd need a new measure rather than new calculated column. Which would be something like:

CF - FL :=
var cf = calculate(sum(revenue);ver="CF")
var fl = calculate(sum(revenue);ver="FL")

return cf-fl

If you are talking about power query side of things, then you'd need to make new column in PowerQuery -> Add column -> select CF -> From number -> standad -> substract -> choose FL.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.