Hello, I have a Sharepoint list with a column 'Tasking Entity' of type "Choice" connected to a dropdown in Power Apps, with the intent that the dropdown will filter a gallery of rows in the Sharepoint list by the selected 'Task Entity' so that users can view all rows under that 'Tasking Entity', however, I keep getting an error that my types are incompatible for comparison even though they are both type "Record." Here's my dropdown code:
Choices('R9 Power Apps Input Form'.'Tasking Entity')
And here is my gallery code:
Filter('R9 Power Apps Input Form',
'Tasking Entity'=Dropdown2.Selected)
The gallery code gives the following error message: "Incompatible types for comparison: Record, Record."
Can anyone help with this issue? Thanks in advance!