Splunk cannot do much with dates in string format. They should be converted into integers using the strptime function first. Also, the number of days should be converted into seconds before it is added to a timestamp. | eval lastpickupts = strptime(lastpickupdate, "<<format string>>")
| eval IITts = strptime(IIT, "<<format string>>")
| eval SecsOfARVRefil = (DaysOfARVRefil + 28) * 86400
| eval InT = if(((lastpickupts + SecsOfARVRefil ) > IITts), "Interrupted", "Active")
... View more