Calculating Time
Hi, So I have got 2 tables.
For instance, table x and table y.
Table x is basically a snapshot or the same table as table y, however table x is a snapshot taken at the start of a day at 05.30am and then table y is up-to-date values of that same table as the day progresses.
Both the tables have a column= planned_duration.
I have renamed the column in table x to initial_duration.
I want to now calculate the difference between planned and initial duration to calculate the variance but they are both in different tables.
Whats the best way to calculate this? Calculated column? It doesnt allow me to subtract two diff tables column together or measures gives incorrect data. Not sure.
I dont want to join the tables since thats complicated and I want them both to be different tables not one.
Tablex(intial_duration) - Tabley(planned_duration) = variance {please tell the best way to do this}
Also both are in one decimal format such as 2.5 = 2 and a half hours.