I have a behavior that I do not want to show if the referenced Title column is not found in the referenced table . Iโm having some difficulty constructing the correct filter statement.
My table:
The table being referenced is Form Responses:
So if Title in Gcal does not appear as the UNIQUEID in Form Responses I do not want the behavior to appear.
Iโve tried this FILTER("Form Responses", ([_THISROW] = [UNIQUEID]))
but get this error:
The expression is valid but its result type โListโ is not one of the expected types: Yes/No
What behavior are you trying to stop?
Maybe:
NOT(IN([Title], Form Responses[UniqueID]))
The NOT IN
statement does not work for me. I went with
OR(
COUNT(FILTER("GCal",[_THISROW].[_name]=[_name]))>1,
COUNT(FILTER("GCal",[_THISROW].[Location]=[Location]))>1
)
The behavior is a LINKTOFILTEREDVIEW(โGCal_Inlineโ, [_THISROW].[_name] = [_name])
. The filtered view shows all meetings with a particular person โฆ but since my calendar is linked to Google calendar some meetings are not rows in the referenced table (nor should they be), they are just meetings created via Google calendar.
User | Count |
---|---|
17 | |
14 | |
10 | |
7 | |
4 |