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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
PLEASE PROVIDE SOLUTION FOR ,HOW TO COMPARE TIME COLUMN IN ONE DATASET WITH TIME COLUMN IN
OHTER DATASET(WHAT FUNCTIONS WE CAN USE)?
below in time_all table ,i am trying to create a column which is the comparision results of time_all(headings for column) and init
Solved! Go to Solution.
Hi @AnilKumar,
Assume those two tables has a relationship with 1:1, you can create a calculated column below:
TimeDiff = DATEDIFF('Table1'[time_all],RELATED(Table2[init]),MINUTE)
Best Regards,
Qiuyun Yu
Hi @AnilKumar,
Assume those two tables has a relationship with 1:1, you can create a calculated column below:
TimeDiff = DATEDIFF('Table1'[time_all],RELATED(Table2[init]),MINUTE)
Best Regards,
Qiuyun Yu