Hi @geraldmpiper
@OneThing is perfectly right, the lookup function doest exactly what you need.
I just want to clarify some behavior related to the delegation.
@OneThing wrote:
Lookup only returns one value so the size of your data source shouldn't matter but different sources have different limitations
The delegation happens when querying your datasource, it doesn't matter if the function return one or several items.
Lookup is delegable in SharePoint, so you can use it to parse more than 500 items to find your item.
Last() function for example returns only one item, but it is not delegable. So you'll face issues operating a Last function against a SharePoint list containing more than 500 items.
I just wanted to make things clear, delegation has nothing to do with how much items are retrieved by the function, but only how much items your datasource is containing.
But again, in your case, @OneThing is right, the LookUp function is 100% what you need.
Théo