Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All.
Please check the below expressions
=interval(Timestamp(reloadtime())-Timestamp(DateTimeLeadCreatedOn),'hh')
This gives the interval in hours.
If the above expression is greater than 1 it has to return success otherwise failure.
=if(interval(Timestamp(reloadtime())-Timestamp(DateTimeLeadCreatedOn),'hh')>1,'Success','Failure')
But the below expression is not returning anything.
Can someone help me with this issue.
Regards,
Keerthi KS
Try like:
=if(reloadtime()-DateTimeLeadCreatedOn>1/24,'Success','Failure')
Can you post sample data and app?
may be this:
=if(num(interval(Timestamp(reloadtime())-Timestamp(DateTimeLeadCreatedOn),'hh'))>1,'Success','Failure')
When its converting to num it gives some different value in decimals.
Probably,
=If(Interval (Timestamp(reloadtime())-Timestamp(DateTimeLeadCreatedOn),'hh:mm')<'01:00','Success','Faliure')
Try like:
=if(reloadtime()-DateTimeLeadCreatedOn>1/24,'Success','Failure')
Nope, I am just making your Interval as a num while comparing with 1....
It would return you either Success or Failure
Hi Keerthi,
Make sure you provide specific timestamp format, Try this one
=if(interval(Timestamp(reloadtime(),'MM/DD/YYYY h:mm:ss TT')-Timestamp(DateTimeLeadCreatedOn,'MM/DD/YYYY h:mm:ss TT'),'hh')>1,'Success','Failure')
IF(TimeStamp(ReloadTime()-DateTimeLeadCreatedOn)*24>1,'Success','Failure')