So, I think I'm a little confused.
I have a Dataverse Table with the following settings: for the Column - 'Approval Status'

When comparing them / trying to filter in Canvas I find I usually have to refer to them as = 10 for Pending approval etc.
Doesn't seem to work when trying to use the Text values.
Eg, In a gallery I am using the below which works.:
Sort(
Filter(GB_Recipients, 'Approval status' = 20),
'Created On',
SortOrder.Descending
)
But this doesn't:
Sort(
Filter(GB_Recipients, 'Approval status' = "Approved"),
'Created On',
SortOrder.Descending
)
I want to compare to the actual text instead of the number value.
What am I doing wrong 🙂
Thank you