I have a database which records the user ID and login time into a two column table:
User
DateTime
which drives a query
User
DateTime
DayOfWeek
I would like to create a crosstab query which shows day of week across top and user down the side and DateTime in the Values section. The problem is that if someone logs in more than once in one day, I can only get the first or last login. I would like to get each login.
Is there any way to do this
User
DateTime
which drives a query
User
DateTime
DayOfWeek
I would like to create a crosstab query which shows day of week across top and user down the side and DateTime in the Values section. The problem is that if someone logs in more than once in one day, I can only get the first or last login. I would like to get each login.
Is there any way to do this