Hi, I tried to find answers on the forum but I didn't find any working solutions. I had two fields with "hour / minute / second" like: TReceived > 17:13:10 TSent > 17:12:20 I'm trying to substract TSent from TReceived and put it into a table. I did something like : | eval start=strptime(TSent, "%H:%M:%S.%N"), end=strptime(TReceived, "%H:%M:%S.%N") | eval difference=end-start |table end,start,difference As a result, I correctly have something on the "end" and "star" column but "difference" stays empty. Am I missing something? Thanks.
... View more