Sorting row by date.

C

carlos_ray86

Is there a way to sort a row by date but the date is set up such that
it goes DD/MM/YYYY? Is the main question? I'm not sure if this is
possible.

Basically the date is link to data in the rows example
Date Average Mean
10/9/2008 4.34 4.2
10/7/2007 3 3.1
10/28/2008 5 5.4
So basically sort that by date.
 
J

Joel

Dates are number that are formated to look like a string Date. As long as
the dates are Not strings there should be no problems. To verify you have
dates clciik ona cell and then go to worksheet menu Format - Cells - Number
and check that a date format is highlighted.

The only problem you may encounter is that dates with hidden Hours and
minutes will sort in sequence includiing the hours and minutes.

Time is stored as a number with 1 = 1/1/1900. each day is = 1. So 2 =
1/2/1900. An hour = 1/24 starting at midnight. So 8:00 AM = 8/24 = 1/3 =
..3333. 1/1/1900 8:00 AM = 1.33333333333. Minutes are 1/(24 * 60). Seconds
are 1/(24 * 60 * 60).

If the number is 1.333333 (1/1/1900 8:00 AM) and the format for the cell is
showing only Month, day, Year you will not see the hours and minutes but the
number is still 1.333333. If the Date is 1.666666 (1/1/1900 2:00 PM) the
8:00 AM will appear before the 2:00 PM even though you only see the Date
(Month, Day, year). so if you had

John 1/1/1900 8:00 AM
Mary 1/1/1900 2:00 PM

and your sorted using two keys Date first, Name Second you would get

Mary 1/1/1900 (=1.33333)
John 1/1/1900 (=1.66666)

The dates wouild appear identical but are not)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top