
Announcements
Hi,
im having a wierd situation with a select statement, it works for the first 3 items but fail for all the others
select syntax:
"<tr><td>@{item()['ID']}</td><td>@{item()['Title']}</td><td>@{item()['O365_x0020_Service']['Value']}</td><td>@{item()['Groupowner']['Value']}</td><td>@{item()['Status']['Value']}</td><td>@{item()['Priority']['Value']}</td></tr>"
the error text:
the thing is that the property service does exist andf identified correctly for the first three records, but fails for all the others.
any idea?
thanks,
Eyal
Hi @Perez
Please try replacing:
item()['O365_x0020_Service']['Value']
with
item()?['O365_x0020_Service']?['Value']
If the property item()?['O365_x0020_Service'] or item()?['O365_x0020_Service']?['Value'] is missing, instead of stopping with an error, the expression item()?['O365_x0020_Service']?['Value'] will return the value null and the flow should continue:
Ellis
____________________________________
If I have answered your question, please mark the post as Solved.
If you like my response, please give it a Thumbs Up.