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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
PTSS
Frequent Visitor

how to create formula for new amount column based on account

Site   Type    Period              Account       Amount
BD1   ANF    2022-09-15     Thujan          4
BD1   ANF    2022-09-16     Thujan          4
BD1   ANF    2022-09-15     Factor           0.3
BD1   ANF    2022-09-16     Factor           0.3
BD1   ANF    2022-09-15     Slippery        1.2
BD1   ANF    2022-09-16     Slippery        1.2

 

i want to create a new column with sum of values ​​by account,

 

I've tried this formula but it doesn't work

Amount THujan = CALCULATE([Amount], SS_Account="Thujan")

 

is there any other way?

2 ACCEPTED SOLUTIONS
MahyarTF
Memorable Member
Memorable Member

Hi,

you could use the below code for creating the column :

NewAmount = CALCULATE(sum(Sheet56[amount]), all(Sheet56), Sheet56[Account] = EARLIER(Sheet56[Account]))
MahyarTF_0-1669090824583.png

 

Appreciate your Kudos and please mark it as a solution if it helps you 

Mahyartf

View solution in original post

AbbasG
Memorable Member
Memorable Member

@PTSS I think you are missing "SUM" here. Hope it Help's

 

AbbasG_1-1669091373707.png

 

View solution in original post

3 REPLIES 3
FreemanZ
Community Champion
Community Champion

try to add a new column with the code below:

 AmountSum =
VAR CurrentAccount = TableName[Account]
RETURN
    CALCULATE(
        SUM(TableName[Amount]),
        TableName[Account] = CurrentAccount,
        ALL()
)
 
I tried and it worked like this:
FreemanZ_0-1669098105853.png

 

AbbasG
Memorable Member
Memorable Member

@PTSS I think you are missing "SUM" here. Hope it Help's

 

AbbasG_1-1669091373707.png

 

MahyarTF
Memorable Member
Memorable Member

Hi,

you could use the below code for creating the column :

NewAmount = CALCULATE(sum(Sheet56[amount]), all(Sheet56), Sheet56[Account] = EARLIER(Sheet56[Account]))
MahyarTF_0-1669090824583.png

 

Appreciate your Kudos and please mark it as a solution if it helps you 

Mahyartf

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.