I have a table with a button in it.
I need to push a bunch, but not all, of those buttons… just the ones with certain criteria (i.e., a checkbox in the row is checked, and another field in that row is blank).
Rather than go row by row, pushing sometimes hundreds of buttons (kill me), I’d like to set up one big master button outside of the table that I can press that will press all the buttons in rows that meet that criteria.
I thought I figured this out, but nothing happens when I push the master button. Here’s the formula I’m using:
RunActions(
SwitchIf(
AND(
[TableA].[CheckboxField]=true, [TableA].[OtherField].IsBlank()
),
[TableA].[Button]
)
)
Thoughts, brilliant ones?