I have an Access query that passes phone switch data to an Excel Pivot Table. I use the following expression to parse the date
Time: Mid([CallDate],13,5)
which gives me normal looking time values like
14:52
11:33
18:21
etc.
This is fine for display purposes but Excel is not recognizing them as time values so I can not perform any functions with them. I would like to use MIN and MAX so that I can display each agent's first and last calls of the day. Is there a way to have Access pass the values in a way that Excel will recognize them as time values?
Time: Mid([CallDate],13,5)
which gives me normal looking time values like
14:52
11:33
18:21
etc.
This is fine for display purposes but Excel is not recognizing them as time values so I can not perform any functions with them. I would like to use MIN and MAX so that I can display each agent's first and last calls of the day. Is there a way to have Access pass the values in a way that Excel will recognize them as time values?