
Announcements
Hey everyone,
i'm experiencing this issue when applying a basic filter to a gallery.
My data source in Dynamics 365, the account entity.
I'm using a text input to filter and the following logical formula:
Filter(Accounts, FilterTextBox.Text = 'Account Name')
The system doesn't work and complain about "the left side of the equal operator must be property of the entity.
If i change the '=' sign with the '-' sign, the message is still there, but at least the filter works fine.
Do you happen to know why i get this message ?
Thank you very much.
Regards
The error you get states that the "left side of the equal operator must be a property of the entity"
This is saying the 'Account Name' must be on the lefthand side and the Textbox must be on the right.
Filter(Accounts,'Account Name' = FilterTextBox.Text)