So I have a simple text file which contains the following CSV data;
Yet when I import it into Excel;
Excel happily interprets date1 in a 12 hour format but then decides to interpret date2 as a 24 hour!!?!
The source data is output from an eventlog mine via Get-WinEvent.
What gives?! Time-zones!
Cheers, Paul.
Code:
MachineName,TimeCreated,Message
Serv1.domain1.com,10/13/2014 2:56:54 AM,Auto Client Reconnect occurred for user: domain1\user1
Serv1.domain1.com,10/10/2014 5:13:53 PM,Auto Client Reconnect occurred for user: domain1\user2
Code:
MachineName TimeCreated Message
Serv1.domain1.com 10/13/2014 2:56:54 AM Auto Client Reconnect occurred for user: domain1\user1
Serv1.domain1.com 10/10/2014 17:13 Auto Client Reconnect occurred for user: domain1\user2
The source data is output from an eventlog mine via Get-WinEvent.
What gives?! Time-zones!
Cheers, Paul.
Last edited: