Toggle column type as radiobutton

Hello, how can i set Toggle column type as radiobutton?
Purpose: guaranteed selection of only one row from the list.

Hey there!

You can do this with a helper column - check out the example, linked below:

https://public.getgrist.com/8nwaLQkyghNk/Radio-Button-Example/m/fork

The toggle column will use a trigger formula that = False and applies on changes to your helper column. The helper column will be a formula column that looks up the true value in the toggle column.

When you toggle any record to true, the helper column will update to that record’s ID and the prior true value will change to false.

Let me know if you have any questions!

1 Like

Thank you @natalie-grist !