Hello all, In a project I'm working currently, I have to plot a graph against time.
The time is in the format : hh:mm:ss like 21:00:05, 21:03:09, 21:15:06, 21:15:55, 22:15:06, 22:15:55
Now my manager wants me to start the time at a whole number, that is make the initial time to start at 21:00:00 , and increment it in such a way that the next number is a whole number 21:05:00.
ex: 21:00:00, 21:15:00, 21:30:00, 21:45:00, 22:00:00
Also not always the time will start at 21:03:05. What ever time it starts, I must make that in an order.
Need help please..
I have included C++ in tags, because I can change these values pro grammatically before displaying in excel. I'm not sure weather to use the number representation of time to calculate or the general or the time itself...