Table (View) Filter (v2019)

I have a view, and I’m trying to set the filter (Table Options).I’m trying to do something like below… (so the current user isn’t shown in the view)
Tried different combinations… to no avail… hoping for some suggestions…

“visible = ‘1’ AND ‘id’ <> '” . $_GET[CurrentUserID] . "'"Thanks!
B

visible = ‘1’

→ visible == ‘1’

Double check this:
$_GET[CurrentUserID]Make sure it will return a valid value.

Thank you both… after more testing…THIS works.“visible = ‘1’ AND id <> '” . CurrentUserID() . “'”