ObjectLink() to row showing ('[UnknownObject]')

Can anyone tell me what I’m doing wrong here to get a simple ObjectLink() to a filtered row?

I filter the row I want to link to:

When I add ObjectLink() to it, the result is Blank:

And the error message shows [unknown object]:

Thank for your help!

- Jeremy

1 Like

The filter() formula AFAIK always returns an array, even if it’s a 1-element array like in your case.

You can, for example, add first() to your formula, so that ObjectLink() will be applied to a single row, and then it will work as you expect it.

[Next Actions].Filter(Title="Reconcile transactions").First().ObjectLink()

4 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.