All of the Date/Time columns are very difficult to read and parse (especially if you're working with a large number of files) because the date and time are so close to each other. Not only that, but if you're not using date and time formats that use leading zeroes, nothing lines up, and it's all quite a bit worse.
I propose formatting all of the date/time columns so that the dates are all left justified, the times are all right justified, and adjusting the column width allows you to change the space in between.
For example:
Before:
Code: Select all
With Leading Zeroes:
2007-01-10 08:27:19
2007-11-03 20:13:44
2005-12-07 01:56:13
2007-05-08 14:12:56
2009-12-23 03:38:38
2007-02-01 15:44:22
2008-11-17 00:56:10
2008-06-11 20:01:19
2004-08-01 17:25:49
2008-10-30 04:21:51
Without Leading Zeroes:
1-10-2007 08:27:19
11-3-2007 20:13:44
12-7-2005 01:56:13
5-8-2007 14:12:56
12-23-2009 03:38:38
2-1-2007 15:44:22
11-17-2008 00:56:10
6-11-2008 20:01:19
8-1-2004 17:25:49
10-30-2008 04:21:51
After:
Code: Select all
With Leading Zeroes:
2007-01-10 08:27:19
2007-11-03 20:13:44
2005-12-07 01:56:13
2007-05-08 14:12:56
2009-12-23 03:38:38
2007-02-01 15:44:22
2008-11-17 00:56:10
2008-06-11 20:01:19
2004-08-01 17:25:49
2008-10-30 04:21:51
Without Leading Zeroes:
1-10-2007 08:27:19
11-3-2007 20:13:44
12-7-2005 01:56:13
5-8-2007 14:12:56
12-23-2009 03:38:38
2-1-2007 15:44:22
11-17-2008 00:56:10
6-11-2008 20:01:19
8-1-2004 17:25:49
10-30-2008 04:21:51
What do you think?
XYplorer Beta Club