I have a date column that I'm trying to convert to %m/%d/%Y. The date stamp is a little complex but I got it to work until daylight savings took affect. Now anything with a timezone offset that has a non-zero number in the third digit, -0480 for example, returns blank. Below is my query... | inputlookup DateStampConvert.csv | rename "System Name" as systemName | rename "Date Stamp" as DateStampDate | eval dateStamp=strftime(strptime(DateStampDate, "%b %d %Y %H:%M:%S %z"), "%m/%d/%Y") | table systemName dateStamp | outputlookup dateStamp.csv Is there something I'm missing?
... View more