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

Announcements

News and Announcements icon
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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Power Apps

#1
Haque Profile Picture

Haque 84

#2
WarrenBelz Profile Picture

WarrenBelz 79 Most Valuable Professional

#3
Kalathiya Profile Picture

Kalathiya 40 Super User 2026 Season 1

Last 30 days Overall leaderboard