Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Hi,
I want to calculate the date difference ,
ED - SD where SD and ED are different Columns and different rows,
Anyone having idea,
Thanks,
Solved! Go to Solution.
Add an index column in Query Editor and a calculated column in DAX.
Column =
VAR ed =
IF (
Table1[Type] = "Arr",
LOOKUPVALUE (
Table1[ED],
Table1[Index], Table1[Index] + 1,
Table1[Type], "Dep"
)
)
RETURN
ed
Add an index column in Query Editor and a calculated column in DAX.
Column =
VAR ed =
IF (
Table1[Type] = "Arr",
LOOKUPVALUE (
Table1[ED],
Table1[Index], Table1[Index] + 1,
Table1[Type], "Dep"
)
)
RETURN
ed
Hi @urspalani
Do you have any other columns to link the top 2 rows together (I assumed they are linked), but not to the bottom two?
They are linked based on Arr & Dep
So is all the data sequential? Whats to stop linking the top row from the bottom row?
This is just a example,
In real time i will get different Report type that is Arr,Dep,ONH,BOSP,EOSP
I have to find the difference always for Arr & Dep ,it will appear in different line not next two each other ,Based on Report type i have find the difference in dates,
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 77 | |
| 37 | |
| 31 | |
| 29 | |
| 26 |