Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi everybody,
i'm really new to Power Bi.
I've a table with different entries of pallets.
The pallets arrive at stations and leave stations.
For example:
Pallet 006 arrived at station on 01.07.2019 15:46:24,
it leaves the station same day at 15:57:58.
How could i achieve that the end-value of the rows with operation ArrivedAtStation becomes the start-value of the next row where the pallet has left the station.
It would be nice if someone could help me.
thx, Gresi
Solved! Go to Solution.
Try this as calc column
End =
MINX (
TOPN (
1,
FILTER (
YourTableName,
[pallet] = EARLIER ( [pallet] )
&& [start] > EARLIER ( [start] )
),
[start], ASC
),
[Start]
)
Try this as calc column
End =
MINX (
TOPN (
1,
FILTER (
YourTableName,
[pallet] = EARLIER ( [pallet] )
&& [start] > EARLIER ( [start] )
),
[start], ASC
),
[Start]
)
Hi,
thanks for the fast answer !
I've solved it already.
thx, Gresi
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!