Hide disabled buttons on card

I have a few buttons in my view but not all of them are allowed to be used for every row. I’m disabling them but there’s still a lot of clutter because of this. I would like only the enabled buttons to be visible.

You can use an If( Condition when the Button should be visible, Button(), “”) Formula for this. Add a Text Column, set it up with the referential Button formula, and hide the actual Button Column.

1 Like

I’m not sure what you mean. I have it set up the following way:

If(IsNotBlank(thisRow.[Link URL]), thisRow.Link, "")

where thisRow.Link is the button. The result is this:

image

Is there something I’m missing to display the actual button?