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 nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
hey everyone im trying to do a report where i need to check if the values from "order1" appears in "ReturnId" is this happens i need to get the value of "PointId" from the row where "order1" is filled and put in where the "ReturnId" is the same (i did the example in Excel of what i expect as the result)
PowerBi file
Is there someway to do this?? Thanks
Solved! Go to Solution.
Hey @Anonymous ,
the following calculated column should do the job:
Wanted PointID =
VAR vRowReturnID = Planilha1[ReturnId]
VAR vResult =
CALCULATE(
MAX( Planilha1[PointId] ),
FILTER(
Planilha1,
Planilha1[order1] = vRowReturnID
)
)
RETURN
IF(
vRowReturnID <> BLANK(),
vResult
)
Hey @Anonymous ,
the following calculated column should do the job:
Wanted PointID =
VAR vRowReturnID = Planilha1[ReturnId]
VAR vResult =
CALCULATE(
MAX( Planilha1[PointId] ),
FILTER(
Planilha1,
Planilha1[order1] = vRowReturnID
)
)
RETURN
IF(
vRowReturnID <> BLANK(),
vResult
)
Perfect!! thanks a lot
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 29 | |
| 27 | |
| 26 | |
| 23 | |
| 16 |
| User | Count |
|---|---|
| 53 | |
| 46 | |
| 38 | |
| 29 | |
| 21 |