Hi.
I'am trying to make script which counts time durations together from table. My table looks like this:
[start time] [end time] [duration(min)]
12:20........13:10.......50
13:20........13:40.......20
And my query should look like this:
[hour] [duration] [fault happened]
12........40...........1
13........30...........2
So I have to make a script which counts somehow duration and [start time] minutes together and if it is over 60 then adds those minutes to the next hour.
Could someone help me to get started whit VBA. For example how I can handle my tables fields whit VBA?
I'am trying to make script which counts time durations together from table. My table looks like this:
[start time] [end time] [duration(min)]
12:20........13:10.......50
13:20........13:40.......20
And my query should look like this:
[hour] [duration] [fault happened]
12........40...........1
13........30...........2
So I have to make a script which counts somehow duration and [start time] minutes together and if it is over 60 then adds those minutes to the next hour.
Could someone help me to get started whit VBA. For example how I can handle my tables fields whit VBA?