this feels like it should be easy but i can't quit...
# suiteanalytics
a
this feels like it should be easy but i can't quite get there - anyone know off the top of their head a way to have a filter comparing two dates? I want my search to return values if date1 is after date2. i've tried using date1 > date2 and (date1-date2) > 0 and keep getting errors.
a
I have used date comparison in filter criteria by using it inside a formula (numeric) ... case when {date1} > {date2} 1 else 0 end and then filter for 1
a
huh, that's basically what i had - maybe i had a typo or something, i'll try it again. thanks!
i had forgotten to put "end" at the end 🤦 working now, thanks again!
a
One of those times that you stare at it for hours for the most obvious answer! the curse of being into programming...