Forum Discussion
UncleLewis
4 years agoResponsive Resident
Get Next Larger DateTime
Hi all, How to get next larger datetime from another table? I have tblStart and tblEnd I am trying to build a new table so I cna use the datetime fields to calculate elapsed time. Problem i...
- 4 years ago
Hi,
Write this calculated column formula in the tblHold Table
=calculate(min(tblRelease[date_time]),filter(tblRelease,tblRelease[work_order_id]=earlier(tblHold[work_order_id])&&tblRelease[date_time]>earlier(tblHold[date_time])))
Hope this helps.
UncleLewis
4 years agoResponsive Resident
Thanks Ashish,
Works perfectly!
Thanks,
-w
Ashish_Mathur
4 years agoSuper User
You are welcome.