Hello Kumar,
This solution is to extract the time stamp from date.
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
It is not that difficult to split the time stamp range to show on X-axis. You can use the actual time coming into your spread sheet.
Let us say you get the input using Live Office or Query Browser or QaaWs. That input is mapped to A2:A20 row wise. Take a blank cell for example D2 and write the below formula.
D2 = TEXT(A2,"HH:MM:SS")
Input in A2 is 04-08-2013 14:26
Output In D2 is as per the above formula : 14:26:06
And just drag the same D2 till the range your required. In our scenario its from D2:D20.
If you do not need to display the seconds value. Just use = TEXT(A2,"HH:MM")
where A2 contains the input data.
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
This below is to extract for your particular scenario. Count and time stamp
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
your input is 60 14:35 in A2 where 60 is the count and remaining is time stamp
formula in D2 = =TRIM(REPLACE(E14,1,2," "))
Replace works like replace(old_text,start_num,num_chars,new_text)
old text = the text which has to be replaced: here A2
Start_num = the starting number of the text: here 1
num_chars = total number of characters need to be replaced: here 2 as we wanna remove the count
new_text = text to be replaced: here " " which is blank space.
then trim() = which will remove the unwanted spaces.
output = 14:35
Hope this is helpful. Please let me know in any more concerns.
Thanks & Regards
Raj