Hi Everyone,
I have a simple requirement for a project tracking app I’m working on. The app has a [Projects] table with the following columns:
- [Status] (text list) (“Created”, “Proposed”, “Approved”, “Cancelled”, “Completed”)
- [Cancel Reason] (text)
- [Approved Budget] (number)
I’ve added an action button that allows users to change the [Status] of a project. When a user presses this button, a pop-up appears where they can choose the desired status without editing the entire project.
I want to add conditional inputs based on the new status chosen by the user. For example:
- If the status is changed to “Cancelled,” I want the user to enter a [Cancel Reason].
- If the status is changed to “Approved,” I want the user to enter the [Approved Budget].
How can I implement this functionality?
I’m also open to alternative approaches, such as using automations or other tools. Essentially, I need a way to capture additional inputs from users when a specific data change occurs.
Thanks in advance for your help!