Link to filtered view

I'm trying to change the behavior of the Save button with the following Action. I want to open a filtered view as follows. It is returning 'No items' every time.

LINKTOFILTEREDVIEW(
  "New transfer",
  IN(
    Transfers[Row ID],
    [_THISROW].[Related Transfers]
  )
)

Solved Solved
0 3 162
  • UX
1 ACCEPTED SOLUTION

You are trying to compare list against list with your IN() expression. Try IN([Row ID],..)

View solution in original post

3 REPLIES 3

You are trying to compare list against list with your IN() expression. Try IN([Row ID],..)

Thanks

You're welcome!