Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I'm trying to merge several cells to form a fluid date, is this possible? As below:
Current:
Year | Month | Day | Hour | Minute | Second |
---|---|---|---|---|---|
2015 | 6 | 5 | 6 | 25 | 30 |
2015 | 6 | 11 | 15 | 8 | 45 |
Needed:
Date | Hour | Minute | Second |
---|---|---|---|
5/06/2015 | 6 | 25 | 30 |
11/06/2015 | 15 | 8 | 45 |
Any help would be much appreciated!
Kind regards,
Tristan Breslin
LOAD
MakeDate( Year,Month, Day) as Date,
MakeTime(Hour, Minute, Second) as Time
FROM ...;
LOAD
MakeDate( Year,Month, Day) as Date,
MakeTime(Hour, Minute, Second) as Time
FROM ...;
To make date you can try MakeDate() function:
MakeDate(Year, Month, Day) as Date
Great that's done it! Cheers Swuehl
Cheers Sunny!