I am trying to build Scrum board using data verse table. Option set values are not showing While retrieving option set value using filter condition.
This data type is unsupported for evaluation is showing as value.

ClearCollect(
WICOL,
Filter(
Choices('Work items (Accounts)'),
Text(Value) <> "Inprogress"
)
);
Clear(COLWISeq);
ForAll(
Sequence(CountRows(WICOL)),
Collect(
COLWISeq,
{
Value: Last(
FirstN(
WICOL,
ThisRecord.Value
)
).Value,
RowNo: Value
}
)
);
can someone help me to sort this issue please?
Thanks in advance!