(imported topic written by IvyC)
I’m trying to create relevance that will display “True” if a particular event is in the system log within the last 2 days. My issue is that when it does turn up, it may turn up numerous times within the last 2 days. So I get an error in the result (singular expression refers to non unique object). How can I tell it to report “True” if it sees even one event within the last 2 days, regardless of how many of those events exist within the last 2 days?
This is what I have so far:
exists (records whose (source of it = “SideBySide”) of system event log) and ((now-(time generated of records whose (source of it = “SideBySide”) of system event log)) < 2*day)
Please help. Thanks.