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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Christianvs
Helper I
Helper I

Selecting value from different row

Hi

 

I got a table that looks like this:

Christianvs_0-1666698066166.png

 

My goal is to add a new column called NEWDIST where the DIST value is used unless there are rows with same ID. In that case it should use the DIST value of the of the ID with a blank REF. For the table here the result should look like:

Christianvs_1-1666698250902.png

I added the COUNT column to with find the duplicates in ID and tried to do an IF statement in a calculated column:

NEWDIST = IF( NOT( ISBLANK( Table[COUNT]) ),
   *FUNCTION THAT CHOOSES DIST FROM ROW 1*,
   MAX(Table[DIST]))
 
I tried using CALCULATE with a FILTER but I havent got it working. Anybody able to help me out?
If it is possible without first making the COUNT column that would be great, I just couldn't figure out how to do it without.
 
Thanks
1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi, 

I am not sure if the whole possible situations are considered, but seeing the sample provided above, I tried to create a calcualted column like below.

Please check the attached pbix file and the below picture.

 

Jihwan_Kim_0-1666699273968.png

 

 

New DIST CC =
IF (
    Data[Ref] = BLANK (),
    Data[DIST],
    MAXX (
        FILTER ( Data, Data[ID] = EARLIER ( Data[ID] ) && Data[Ref] = BLANK () ),
        Data[DIST]
    )
)

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.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

View solution in original post

2 REPLIES 2
Jihwan_Kim
Super User
Super User

Hi, 

I am not sure if the whole possible situations are considered, but seeing the sample provided above, I tried to create a calcualted column like below.

Please check the attached pbix file and the below picture.

 

Jihwan_Kim_0-1666699273968.png

 

 

New DIST CC =
IF (
    Data[Ref] = BLANK (),
    Data[DIST],
    MAXX (
        FILTER ( Data, Data[ID] = EARLIER ( Data[ID] ) && Data[Ref] = BLANK () ),
        Data[DIST]
    )
)

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.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

Thanks a lot Jihwan_Kim! It solved my problem 🙂

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.