web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / This data type is unsu...
Power Apps
Unanswered

This data type is unsupported for evaluation in powerapps while retrieving Option set value.

(0) ShareShare
ReportReport
Posted on by 4

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.

B_David37_0-1698258336917.png

 

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!

Categories:
I have the same question (0)
  • CU-18081211-6 Profile Picture
    9,270 Moderator on at

    @B_David37 ,

    I don't think that is something wrong with your formula. This instant results show is not quite accurate in situation like this. Just use an "old fashion" way to check the collection. Add a gallery with items property set to COLWISeq collection, two labels inside it with text property set to ThisItem.Value for the first one and ThisItem.RowNo for the second and run the app in playmode.

    Please take in consideration also this approach (not too different from yours)  with Index function as help.

     

    ClearCollect(
     WICOL,
     Filter(
     Choices('Work items (Accounts)'),
     Text(Value) <> "Inprogress"
     )
    );
    ForAll(
     Sequence(CountRows(WICOL)),
     Collect(
     COLWISeq,
     {
     Value: Index(
     WICOL,
     Value
     ).Value,
     RowNo: Value
     }
     )
    );
    

     

    Hope it helps !

  • B_David37 Profile Picture
    4 on at

    HI @gabibalaban ,

    Thanks for the reply!

    I am able to show the value in the Label as you said, But, I want to change the status of the field when I click the left and right navigation icons.
    For that i used patch function.
    Patch(
    Accounts,
    ThisItem,
    {'Work items': {Value:LookUp(COLWISeq,RowNo = Value(RowNo_LBL.Text)+1).Value}}
    );
    But it is giving error like "Does not match the expecting type".
    Can you help me on this please?

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Forum hierarchy changes are complete!

In our never-ending quest to improve we are simplifying the forum hierarchy…

Ajay Kumar Gannamaneni – Community Spotlight

We are honored to recognize Ajay Kumar Gannamaneni as our Community Spotlight for December…

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 739 Most Valuable Professional

#2
Michael E. Gernaey Profile Picture

Michael E. Gernaey 343 Super User 2025 Season 2

#3
Power Platform 1919 Profile Picture

Power Platform 1919 268

Last 30 days Overall leaderboard