Hi,
What would be the best way to automate this information below? Best would be to get information from Outage list but when exported into excel it's difficult to use some formulas on the data given.
Best would be to get information from Outage list but when exported into excel it's difficult to use some formulas on the data given.
DataMiner shows as 20h 15m 15s but I cant set it as a time format to have some formulas working on time to filter out incidents longer than 1 hour and incidents less than an hour.
Can we change the format of this to show hours minutes and seconds as 01:00:00?
On the export DataMiner shows 20h 15m 15s but would be good if the format on the export can be 20:15:15, if it 1d 2h 15m 15s to then be 26:15:15
Hi Zean
You should be able to extract for example minutes and seconds and convert to proper time using excel formulas.
Did a quick test:
- Assume the data is in cell A1 with the time value 01m 31s
- Use the following formula (ChatGPT did the heavy lifting here...)
=TIMEVALUE(LEFT(A1,FIND("m",A1)-1)&":"&MID(A1,FIND("m",A1)+2,FIND("s",A1)-FIND("m",A1)-2))
- Change the cell format to TIME
Then you should able to perform time calculations.