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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
sjoerdbuis
Helper I
Helper I

Cumulative Values combined with non cumulative values in a column -i have a flag column-align

Hi,

I have a numbers colum where cumulative values are combined with non cumulative values

The amounts are flagged. How do i create a numbers column where

If numbers value has flag A then cumulative into new numbers column

if numbers values has flag B the numbers stay the same 

In this case I want to have quarterly cumulated not QTDCapture.PNG

1 ACCEPTED SOLUTION
v-cherch-msft
Employee
Employee

Hi @sjoerdbuis 

You may create a calculated column like below:

Column =
IF (
    Table1[Flag] = "B",
    Table1[Value],
    CALCULATE (
        SUM ( Table1[Value] ),
        FILTER (
            ALL ( Table1 ),
            Table1[Flag] = "A"
                && Table1[Date] <= EARLIER ( Table1[Date] )
        )
    )
)

1.png

Regards,

Community Support Team _ Cherie Chen
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-cherch-msft
Employee
Employee

Hi @sjoerdbuis 

You may create a calculated column like below:

Column =
IF (
    Table1[Flag] = "B",
    Table1[Value],
    CALCULATE (
        SUM ( Table1[Value] ),
        FILTER (
            ALL ( Table1 ),
            Table1[Flag] = "A"
                && Table1[Date] <= EARLIER ( Table1[Date] )
        )
    )
)

1.png

Regards,

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

Regarding:

Column =
IF (
    Table1[Flag] = "B",
    Table1[Value],
    CALCULATE (
        SUM ( Table1[Value] ),
        FILTER (
            ALL ( Table1 ),
            Table1[Flag] = "A"
                && Table1[Date] <= EARLIER ( Table1[Date] )
        )
    )
)

If my Date column is in another table, say Table 2, how can i select this table in this function now I can only select Table1 after &&. So the filter needs to look at table1 and table 2

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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