Creating Toggle Buttons
This guide shows you how to create toggle buttons using push buttons and spreadsheet formulas.
Toggling values to trigger actions
Basic Toggle Button Setup
Step 1: Set Up Your Toggle Values
=IF([toggle_cell]=1,0,1)
You dont just have to use 1 and 0 to represent the state. You can use any boolean pair of values. Descriptive boolean values like 'On', 'Off' or 'Show', 'Hide' can make it easier to understand what is happening in your project.
Step 2: Add and Configure the Push Button

Using Your Toggle Button
Example: Show/Hide Objects
Example: Move a block of data
Advanced: Custom Toggle Images
Method 1: Two Image Buttons
Method 2: Single Dynamic Image
Tips
Common Use Cases
Last updated
Was this helpful?