Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
kwl1234
Partner - Contributor III
Partner - Contributor III

Is there any way to replace the filter pane by radio button?

I have a list box showing CompanyLevel and DivisionLevel for user selection.

kwl1234_0-1611820948618.png

Is there any way to convert list box to radio button?

 

I want to achieve that user only can select either one of selection, i.e CompanyLevel.

 

I tried to use button and add the toggle field selection, but it only work on selecting 'CompanyLevel', when I click the button again, it just clear the selection and cannot choose 'DivisonLevel.

kwl1234_1-1611821313278.png

Please help😢

 

 

1 Solution

Accepted Solutions
GaryGiles
Specialist
Specialist

For your Action, choose "Select values in a field"; then for for the value, use:

if(Actual_Plan.CoDivLevel = 'CompanyLevel','DivisionLevel','CompanyLevel')

Then, under Appearance-General, change the label to: =Actual_Plan.CoDivLevel

Hope that helps.

View solution in original post

1 Reply
GaryGiles
Specialist
Specialist

For your Action, choose "Select values in a field"; then for for the value, use:

if(Actual_Plan.CoDivLevel = 'CompanyLevel','DivisionLevel','CompanyLevel')

Then, under Appearance-General, change the label to: =Actual_Plan.CoDivLevel

Hope that helps.