Is it possible to have two buttons in a table column?

Hi @Colleen_Brady, welcome to the community!

Yeah it’s possible but I really discourage it, especially in your situation where you already have Zapier etc set up. It’s very easy to botch the doc so that you’ll have to make a copy of it from history and go over all of your zaps and set them up on a new doc then.

But for the sake of the answer, it’s in this post in a video:

I just advise to set up buttons normally, in separate columns. You can still make dynamic labels (with a formula), define dynamic actions with If/SwitchIf, disable the button etc. E.g. you could just disable the buttons you must not press when the image is not there. Or you could write your action formula like

If(
  Image.IsNotBlank(),
  ModifyRows(...),
  _Noop()
)
1 Like