Forum Discussion
Abhishek_Soni37
3 years agoContributor
Hi @vaidyarm
If you just want to filter the records where time is multiple of 5, then may be you can use below expression the filter snap:
Date.parse($inputDate.substring(0,19)).getMinutes() != 0 && Date.parse($inputDate.substring(0,19)).getMinutes() % 5 == 0
Output will look like this:
I hope this helps 🙂