Smartsheet & Scheduled Regenerate structure?

Sean
New Member

Hi -
I have an app that is integrated with Smartsheet. I have dropdown columns in Smartsheet where new values are added periodically (New names, Addresses, etc.) - these values are then used as the Enum values in AppSheet. Is there a way of scheduling the regenerate structure to update the Enum values?

Thank you,

Sean

0 3 319
3 REPLIES 3

Steve
Platinum 4
Platinum 4

Nope.

Why dont you dynamically generate the dropdown (enum) values?

For instance, your have table name of โ€œtable1โ€ with fields of โ€œitemsโ€, then you want to create the dropdown list out of this table/field.

Then your target data field where you want to display the dropdown, then add to suggested values as

unique(
select(table1[Items], true)
)

This will pull the distinct (unique) value, most importantly โ€œdynamicallyโ€

When new distinct value is added to table1[items] then it appears on the dropdown.

Just a possible workaround idea.

Thank you - yes - iโ€™m using something similar for some of the other columns. Iโ€™ll give that a shot.

Top Labels in this Space