Hello,
I am currently getting an error that reads:
"Incompatible types for comparison. The left value is a OptionSetValue(secctor_options_keys) and the right is a Text"
So my the OptionSetValue(secctor_options_keys), comes from my table. The table has a column called Sect, where it is a choice field from sectoor_options_keys. (choice NOT choices).
I want to compare this to a text value selected from a Dropdown called SectorDD, which has all of the options hard coded in. Like ["A","B","C"....].
I am trying to filter by using the following code:
Filter('K.E.Y.S', Sect = SectorDD.Selected.Value)
However I am getting the errror message from the beginning of this post under the equals sign.
I was wondering how I would be able to compare there two different OptionSetValue and Text.