Action Button Behaviour

Hey everyone,

In my AppSheet application, I created a page to easily update and view the teams managing customers. There is a “Subscription” table for customer data, and other data (such as engagement manager and director) are in their own tables, filtered to the customer table. This allows the teams managing the customer to be easily viewed and updated. However, I want to add a condition: if a customer already has a director, a new director should not be added; but if there is no director, a new one should be added. How can I implement this?

PS: The action button might not be working correctly because it’s in the reference table. For example, when I add a condition like [_THISROW].[Subscription ID] = “rwmeiXWcsI93kCh” to the add button, the button doesn’t appear in the director section of the row with that subscription ID.

Inline List columns cannot be used to perform actions directly on the parent. You would have to present your button as a primary, prominent, or inline button in the detail view itself.

1 Like

I want the ‘Add’ button to be visible if there is no director for a subscription ID, and to be hidden if a director exists. Is this not possible? (The ‘Director’ table is added to the subscription data as a virtual column with the following comment: FILTER(‘Director’, ([_THISROW].[Subscription ID] = [Subscription ID]))).

See this post.