I want to show the difference of time between "Arrival Time" and "Time In" in
one column but then I want to be able to get the average time of that column.
I am wanting to see what the averge wait time was.
To answer THAT LITERAL QUESTION - which I'm guessing is not the answer you
want:
Create a query based on your table.
Include *only* one field in the query by typing
WaitTime: DateDiff("n", [Arrival Time], [Time In])
Change the query to a Totals query by clicking the Greek Sigma icon (looks
like a sideways M).
Change the default Group By on the Totals row to "Avg".
Open the query. You'll get one row showing the average wait time across your
entire table.