I have a combo box field, and i am trying to check if it has a selected value of certain text, as follow:-
but i am getting this error:-
Incompatible type for comparison. These types can not be compared : Table , Text
Solved! Go to Solution.
DataCardValue56.SelectedItems.Value is a table and you're testing its equivalence to a string - that's a type mismatch.
Instead, try:
If("Other (Access required ports, protocols, etc...)" in DataCardValue56.SelectedItems.Value,
DisplayMode.Edit,
DisplayMode.Disabled
)
Bryan
DataCardValue56.SelectedItems.Value is a table and you're testing its equivalence to a string - that's a type mismatch.
Instead, try:
If("Other (Access required ports, protocols, etc...)" in DataCardValue56.SelectedItems.Value,
DisplayMode.Edit,
DisplayMode.Disabled
)
Bryan