
Hi All!
Im facing an issue with a flow.
Unable to process template language expressions in action 'Get_items' inputs at line '0' and column '0': 'The template language expression 'items('Apply_to_each')['userPrincipalName']' cannot be evaluated because property 'userPrincipalName' doesn't exist, available properties are 'userPrincipalName
'. Please see https://aka.ms/logicexpressions for usage details.'.
I have a csv with only one column.
The property exists. Even if I try only with 'userPrincipalName ' with a space before the ', still the same error appears.
I'm out of ideas... Maybe it is because of this /r? Any help would be appreciated.
Yes, it is because of \r.
I assume that you split your CSV at line break, something like decodeUriComponent('%0A')
Just use decodeUriComponent('%0D%0A') to split at carriage return line break to get rid of it.