Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
Hi
I got a table that looks like this:
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:
I added the COUNT column to with find the duplicates in ID and tried to do an IF statement in a calculated column:
Solved! Go to Solution.
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.
New DIST CC =
IF (
Data[Ref] = BLANK (),
Data[DIST],
MAXX (
FILTER ( Data, Data[ID] = EARLIER ( Data[ID] ) && Data[Ref] = BLANK () ),
Data[DIST]
)
)
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.
New DIST CC =
IF (
Data[Ref] = BLANK (),
Data[DIST],
MAXX (
FILTER ( Data, Data[ID] = EARLIER ( Data[ID] ) && Data[Ref] = BLANK () ),
Data[DIST]
)
)
Thanks a lot Jihwan_Kim! It solved my problem 🙂
| User | Count |
|---|---|
| 22 | |
| 22 | |
| 20 | |
| 19 | |
| 11 |
| User | Count |
|---|---|
| 65 | |
| 54 | |
| 46 | |
| 44 | |
| 31 |