Hello everyone!
I have the following problem. I need to join two tables by the "Point" column. The result is the column where hours are divided by times
Table 1
Route | Point | Times |
388-3256-388 | 388 | 2 |
388-3256-388 | 3256 | 1 |
Table 2
Point | Hours |
388 | 3 |
3256 | 2 |
Output table
Route | Point | Hours/ Times |
388-3256-388 | 388 | 1,5 |
388-3256-388 | 3256 | 2 |
Thanks!
Solved! Go to Solution.