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
jiangxm80
Frequent Visitor

Add one more columns

I would like to add one more columns, which would be equal to the RV line of each set of records.

 

Column1   Column2    Column3

A                RV              100

A                AB                80

A                AB                30

B                RV               200

B                AB               120

B                AB                70 

 

Would expect:

Column1   Column2    Column3   Column4

A                RV              100             100

A                AB                80             100

A                AB                30             100

B                RV               200             200

B                AB               120             200

B                AB                70              200

 

Thanks a lot!

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi,

Please check the below picture and the attached pbix file.

 

Jihwan_Kim_0-1668152024544.png

 

Column4 CC =
MAXX (
    FILTER (
        Data,
        Data[Column1] = EARLIER ( Data[Column1] )
            && Data[Column2] = "RV"
    ),
    Data[Column3]
)

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

3 REPLIES 3
Jihwan_Kim
Super User
Super User

Hi,

Please check the below picture and the attached pbix file.

 

Jihwan_Kim_0-1668152024544.png

 

Column4 CC =
MAXX (
    FILTER (
        Data,
        Data[Column1] = EARLIER ( Data[Column1] )
            && Data[Column2] = "RV"
    ),
    Data[Column3]
)

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Thanks a lot!

amitchandak
Super User
Super User

@jiangxm80 , A new column in DAX

 

= MAxx(filter(Table, [Column1] = earlier([Column1]) , [Column3] )

 

Power BI DAX- Earlier, I should have known Earlier: https://youtu.be/CVW6YwvHHi8

 

 

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.