Hi All, I am trying to come up with a formula in m...
# general
d
Hi All, I am trying to come up with a formula in my saved search with the following criteria - if Date Modified by -System- was after Date modified by UI then 0 else 1. In my formula I need to look at the timestamp as the day might be same. Can someone help me please? Thank you!
k
CASE WHEN (MAX(CASE WHEN {systemnotes.name} = '-System-' THEN {systemnotes.date} ELSE NULL END) > MAX(CASE WHEN {systemnotes.context} = 'UI' THEN {systemnotes.date} ELSE NULL END)) THEN 0 ELSE 1 END
d
Thanks a lot for your help!!
👍 1