Hi! I'm trying to make an app for capturing orders. I have Orders table, which has an Order status column and Order details table which holds all items from all the orders. I want to disable the system action Add when the order is marked as Closed. I've set its Only if this condition is true value to
[Order ID].[Order status] = "Open"
but the action is unavailable even when the order is Open.
How it looks like:
How it should look like:
Solved! Go to Solution.
The Only if this condition is true expression or the Add action does not have access to column values of the current row, so you won't be able use it as you want. Instead, consider disabling the system-provided Add action and creating your own of type App: go to another view in this app with a Target expression that uses LINKTOFORM(). The action won't display in the same place, but it will allow you to do what you want.
The Only if this condition is true expression or the Add action does not have access to column values of the current row, so you won't be able use it as you want. Instead, consider disabling the system-provided Add action and creating your own of type App: go to another view in this app with a Target expression that uses LINKTOFORM(). The action won't display in the same place, but it will allow you to do what you want.
Thank you! I didn't think about it, it worked.
User | Count |
---|---|
31 | |
11 | |
3 | |
2 | |
2 |