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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
jaco1951
Helper III
Helper III

Accumulate in groups

Hi all

 

I have a large table with a key that is made of YearWeek, and a forecast usually four weeks forward. 

 

In the first row I have a startbalance, and in the forecasted weeks I have incoming and outgoing values that I need to add to the startbalance. I do also have a column with an Index.

 

(amountFreeCash +  amountRestrictedCash) + incoming - outgoing

 

How can I approac this best? By DAX or in Power Query?

Thanks in advance.

Br EspeCapture.JPG

1 ACCEPTED SOLUTION
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @jaco1951,

 

Please refer to below DAX formula:

StartBalance each week =
VAR Accumulateincomingprevious =
    CALCULATE (
        SUM ( 'YearWeek Forecast'[incoming] ),
        FILTER (
            'YearWeek Forecast',
            'YearWeek Forecast'[Index]
                <= EARLIER ( 'YearWeek Forecast'[Index] ) - 1
        )
    )
VAR Accumulateoutgoingprevious =
    CALCULATE (
        SUM ( 'YearWeek Forecast'[outgoing] ),
        FILTER (
            'YearWeek Forecast',
            'YearWeek Forecast'[Index]
                <= EARLIER ( 'YearWeek Forecast'[Index] ) - 1
        )
    )
VAR AccumulateamountFCprevious =
    CALCULATE (
        SUM ( 'YearWeek Forecast'[amountFC] ),
        FILTER (
            'YearWeek Forecast',
            'YearWeek Forecast'[Index]
                <= EARLIER ( 'YearWeek Forecast'[Index] ) - 1
        )
    )
VAR AccumulateamountRCprevious =
    CALCULATE (
        SUM ( 'YearWeek Forecast'[amountRC] ),
        FILTER (
            'YearWeek Forecast',
            'YearWeek Forecast'[Index]
                <= EARLIER ( 'YearWeek Forecast'[Index] ) - 1
        )
    )
RETURN
    IF (
        Accumulateincomingprevious = BLANK (),
        'YearWeek Forecast'[amountFC] + 'YearWeek Forecast'[amountRC],
        AccumulateamountFCprevious + AccumulateamountRCprevious
            + Accumulateincomingprevious
            - Accumulateoutgoingprevious
    )

EndBalance each week =
'YearWeek Forecast'[StartBalance each week] + 'YearWeek Forecast'[incoming]
    - 'YearWeek Forecast'[outgoing]

1.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @jaco1951,

 

Please refer to below DAX formula:

StartBalance each week =
VAR Accumulateincomingprevious =
    CALCULATE (
        SUM ( 'YearWeek Forecast'[incoming] ),
        FILTER (
            'YearWeek Forecast',
            'YearWeek Forecast'[Index]
                <= EARLIER ( 'YearWeek Forecast'[Index] ) - 1
        )
    )
VAR Accumulateoutgoingprevious =
    CALCULATE (
        SUM ( 'YearWeek Forecast'[outgoing] ),
        FILTER (
            'YearWeek Forecast',
            'YearWeek Forecast'[Index]
                <= EARLIER ( 'YearWeek Forecast'[Index] ) - 1
        )
    )
VAR AccumulateamountFCprevious =
    CALCULATE (
        SUM ( 'YearWeek Forecast'[amountFC] ),
        FILTER (
            'YearWeek Forecast',
            'YearWeek Forecast'[Index]
                <= EARLIER ( 'YearWeek Forecast'[Index] ) - 1
        )
    )
VAR AccumulateamountRCprevious =
    CALCULATE (
        SUM ( 'YearWeek Forecast'[amountRC] ),
        FILTER (
            'YearWeek Forecast',
            'YearWeek Forecast'[Index]
                <= EARLIER ( 'YearWeek Forecast'[Index] ) - 1
        )
    )
RETURN
    IF (
        Accumulateincomingprevious = BLANK (),
        'YearWeek Forecast'[amountFC] + 'YearWeek Forecast'[amountRC],
        AccumulateamountFCprevious + AccumulateamountRCprevious
            + Accumulateincomingprevious
            - Accumulateoutgoingprevious
    )

EndBalance each week =
'YearWeek Forecast'[StartBalance each week] + 'YearWeek Forecast'[incoming]
    - 'YearWeek Forecast'[outgoing]

1.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thank you Yuliana!

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

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

PBI_Carousel_NL_June

Fabric Community Update - June 2024

Get the latest Fabric updates from Build 2024, key Skills Challenge voucher deadlines, top blogs, forum posts, and product ideas.

Top Solution Authors