I'm trying to make an automatic way to short an excel file field by name and date. I will explain what I'm trying to do:
I have an excel file where there is the log text of many users that have logged in the system during the last days. What I want to get out from this file is the first log in and log out in the system per day and per user. Here is an example:
Excel File
User1 - 20/01/2012 13:00 - 20/01/2012 15:27
User1 - 20/01/2012 16:00 - 20/01/2012 18:43
User2 - 24/01/2012 08:30 - 24/01/2012 11:43
User2 - 24/01/2012 15:32 - 24/01/2012 19:32
User2 - 25/02/2012 10:25 - 25/02/2012 15:25
User3 - 13/03/2012 04:13 - 13/03/2012 10:21
Result I want to get:
User1 - 20/01/2012 Login: 13:00 Logout:18:43
User2 - 24/01/2012 Login: 08:30 Logout:19:32
User2 - 25/02/2012 Login: 10.25 Logout:15:25
User3 - 13/03/2012 Login: 04:13 Logout:10:21
I'm not very sure how I should manage to get that in excel since my skill in excel are very limited. I would really appreciate any help.