Hi,
I've got Dataverse table Orders with field Name.
And I've got flow with DV action List rows. I made OdataFilter which works. This is orders DV table
and I need another condition, that if field Name startsWith 'Provoz'.....
But when I try set expression startsWith(new_name, 'Provoz') still I got expression invalid.
All the modifications of the startsWith function that I tried and all of them returned an invalid expression:
startsWith(new_name, 'Provoz') - logical name
startsWith(new_name, "Provoz")
startsWith(new_Name, 'Provoz) - schema name
startsWith(new_Name, "Provoz")
startsWith(Name, 'Provoz') - name of field
startsWith(name, 'Provoz')
Can anyone advise me where I am making a mistake? I am out of logical ideas.
Thanks