Announcements
Choices([@YourSPListName].ChoiceColumnName)
Filter(YourSPListName, ChoiceColumnName.Value = Radio.Selected.Value)
Choices([@Admins].'Role') //Replace 'Admins' with your SharePoint List name - Replace 'Role' with your SharePoint list column
Filter( MyList, //Replace 'MyList' with your SharePoint list name Category.Value = Radio1.Selected.Value //Replace 'Category' with your SharePoint choice column ) //Radio1 - User your control name
Choices([@'Guia derivacions 04.12.25'].'Grups_Visites')
Layout.Horizontal
Since the Radio control expect the value, you should use the Distinct() function directly on the column you want to display.
Distinct( Filter( MyList, Category.Value = Radio1.Selected.Value ), YourColumn )
Distinct() is applied to return a single-column table.
Distinct( Filter( MyList, Category.Value = Radio1.Selected.Value ), YourColumn //Whatever column you want show as selection that column name you need to place here. )
Reset(RadioButtonControlName); //Replace with RadioButtonControlName - your radio button control name
!IsBlank(RadioButtonControlName.Selected) //RadioButtonControlName - Replace it with your control name
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.
Jump in, show your community spirit, and win prizes!
Expanding mentorship, skilling, and AI innovation
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Valantis 424
WarrenBelz 355 Most Valuable Professional
11manish 290