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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
cardonasebast
Frequent Visitor

Running Values with Month and Value

Hi. 

 

I have a problem creating a Running Value in DAX. I need to group by month and value (for this case a Project) but most of the solutions in the community forum are releated to grouping by date and not by date and value as i need in this case.

 

For example:

 

PowerBi.JPG

 

The correct Running Value for me must be by month and Project , for example:

 

 

 PowerBi2.JPG

 

I used this DAX formulas:

 

AcumT = CALCULATE(SUM(PptoxMes[Presupuesto]);FILTER(PptoxMes;PptoxMes[Month_Num]<=EARLIER(PptoxMes[Month_Num]));PptoxMes[Año]="2015";values(PptoxMes[Proyecto]))

 

and this:

 

AcumT = CALCULATE(SUM(PptoxMes[Presupuesto]);FILTER(PptoxMes;PptoxMes[Month_Num]<=EARLIER(PptoxMes[Month_Num])))

 

and this solution:

 

http://community.powerbi.com/t5/Desktop/DAX-Running-total-by-another-column/td-p/10512

 

and nothing works for me.

 

I need your help.

 

Thanks a lot.

2 ACCEPTED SOLUTIONS
OwenAuger
Super User
Super User

Hi there,

 

For a running total in a DAX calculated column, I find the safest way is to use ALLEXCEPT to ensure that only the columns you specify remain in the filter context for each running total.

 

In your case I would use:

AcumT =
CALCULATE (
    SUM ( PptoxMes[Presupuesto] );
    ALLEXCEPT ( PptoxMes; PptoxMes[Año]; PptoxMes[Projecto] );
    PptoxMes[Month_Num] <= EARLIER ( PptoxMes[Month_Num] )
)

Does that do the trick?

 

Owen 🙂


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
Twitter
LinkedIn

View solution in original post

Sean
Community Champion
Community Champion

@cardonasebast Look at the picture... Both of my formulas are Measures.

Running Total by Project.png

 

EDIT: You should probably add the Year field in the Matrix like this... so data is not aggregated by Month for all years

Running Total by Project2.png

 

View solution in original post

2 REPLIES 2
Sean
Community Champion
Community Champion

@cardonasebast Look at the picture... Both of my formulas are Measures.

Running Total by Project.png

 

EDIT: You should probably add the Year field in the Matrix like this... so data is not aggregated by Month for all years

Running Total by Project2.png

 

OwenAuger
Super User
Super User

Hi there,

 

For a running total in a DAX calculated column, I find the safest way is to use ALLEXCEPT to ensure that only the columns you specify remain in the filter context for each running total.

 

In your case I would use:

AcumT =
CALCULATE (
    SUM ( PptoxMes[Presupuesto] );
    ALLEXCEPT ( PptoxMes; PptoxMes[Año]; PptoxMes[Projecto] );
    PptoxMes[Month_Num] <= EARLIER ( PptoxMes[Month_Num] )
)

Does that do the trick?

 

Owen 🙂


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
Twitter
LinkedIn

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.