Event Log Relevance

(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.

(imported comment written by NoahSalzman)

Why not try this simplified version:

exists records whose (source of it = “SideBySide” and time generated of it > (now - 2*day)) of system event log

(imported comment written by IvyC)

That works. Thanks so much for making that so simple :slight_smile: