Action to go to specific view of related rows in different table

I have a summary card for Form Responses table:

I am trying to get the MEETING action to show related Calendar meetings (GCal table). Right now it’s going to the calendar details but to row #1, not to the specific related row.

My action:

Is there a way to target the specific row of a different view?

My Form Responses data table:

0 4 384
4 REPLIES 4

Steve
Platinum 4
Platinum 4

LINKTOROW([UNIQUEID],"GCal_Inline")

sends me to the correct Calendar meeting view, but it is not filtered to the specific row. I tried
FILTER( (LINKTOROW([UNIQUEID],"GCal_Inline")) , ([Full Name]=[_THISROW].[Full Name]))
but that just gives me a syntax error.

I just struggled with a similar issue and found a solution. Not sure if it would work for you or not given the different setup.

LINKTOFILTEREDVIEW(“GCal_Inline”, AND([UNIQUEID] = [_THISROW].[UNIQUEID], [Full Name] = [_THISROW].[Full Name]))

But hopefully it may help.

Thanks that’s helpful. I ended up using LINKTOFILTEREDVIEW(“GCal_Inline”, [_THISROW].[Full Name] = [_name]).

Top Labels in this Space