So in summary to kind of put it all together...
To show data like this:
A 3/11/2019 209
A 3/12/2019 169
Could possibly do something like this:
SELECT [UserID], [EntryDate], Sum(DateDiff("N",[TimeIn],[TimeOut])) AS ElapsedMinutes
FROM MyTable
WHERE (([EntryDate]>=#1/11/2019#) AND...