I have an interesting conumdrum which I haven't been able to resolve!
I have 3 arrays which I need to sort in parallel, are as follows and have sample data as supplied
EventDate = "04/11/2015,04/11/2015,05/11/2015,05/11/2015,08/11/2015"
Stylist = "Tracey,Michelle,Tracey,Michelle,Michelle"
EventTime = "09:00,09:00,09:00,08:00,09:00"
The sort order is by EventTime, By Stylist within EventDate so the result should be as follows
EventDate = "04/11/2015,04/11/2015,05/11/2015,05/11/2015,08/11/2015"
Stylist = "Michelle,Tracey,Michelle,Tracey,Michelle"
EventTime = "09:00,09:00,08:00,09:00,09:00"
Any ideas on how the code should look for this please?
Many thanks
Steve
I have 3 arrays which I need to sort in parallel, are as follows and have sample data as supplied
EventDate = "04/11/2015,04/11/2015,05/11/2015,05/11/2015,08/11/2015"
Stylist = "Tracey,Michelle,Tracey,Michelle,Michelle"
EventTime = "09:00,09:00,09:00,08:00,09:00"
The sort order is by EventTime, By Stylist within EventDate so the result should be as follows
EventDate = "04/11/2015,04/11/2015,05/11/2015,05/11/2015,08/11/2015"
Stylist = "Michelle,Tracey,Michelle,Tracey,Michelle"
EventTime = "09:00,09:00,08:00,09:00,09:00"
Any ideas on how the code should look for this please?
Many thanks
Steve