
Announcements
So I have a SharePoint library with pictures of parts where the file name is the part number.
I'm trying to add the picture to an entry on a SharePoint list for that part number.
Flow is:
Get the list of files
Then apply to each file returned
Find a corresponding entry on the SharePoint list using an OData query in the get items
PartNumber eq items('Apply_to_each')['Name']
However it is failing with:
Unable to process template language expressions in action 'Get_items' inputs at line '1' and column '13497': 'The template language expression 'items('Apply_to_each')['Name']' cannot be evaluated because property 'Name' doesn't exist, available properties are '@odata.etag, ItemInternalId, ID, Modified, Editor, Editor#Claims, Created, Author, Author#Claims, OData__DisplayName, {Identifier}, {IsFolder}, {Thumbnail}, {Link}, {Name}, {FilenameWithExtension}, {Path}, {FullPath}, {IsCheckedOut}, {VersionNumber}'. Please see for usage details.'.
So it says the property name doesn't exist but then under the list of available properties is Name
Confused!!!
Hello @robofski ,
try to input the 'Name' including the curly brackets, exactly as it is in the error message.
{Name} instead of Name
Also, don't forget to place right side of the condition inside single quotes.