I have a field which gives when a particular event started. Depending on time period selected in dashboard , i want to fetch all records past that time period selected in time picker input of the dashboard. Problem is if time input is relative like "today" /"Yesterday" choice 1 below works and i get results. When time selected as input is explicit like "10/02/2025" ,choice 2 works and i get results. Relative time logic : |where timestamp2 >= relative_time(now(), "$field1.earliest$") Explicit time logic : |where timestamp2 >= tonumber("$field1.earliest$") How to enhance this ,so that irrespective of input ,will get results. Something like below does not work : | eval earliest_time=if(isnum("$field1.earliest$"), tonumber("$field1.earliest$"), relative_time(now(), "$field1.earliest$")) | where timestamp2 >= earliest_time
... View more