I believe your requirement is similar to the one in the post below. “Add” action is not row level, so I believe row level conditions will not apply. Please explore the below approach.
[Removal of add item column after order status changes](https://community.appsheet.com/t/removal-of-add-item-column-after-order-status-changes/20694) Questions
Hi i created a copy of the order capture app, and have also enabled Completed orders in the view. I want to remove the add item below the virtual order details column after the status is changed to complete , so that no one can manipulate completed order. Please help me in this regard [image]
I had the same problem before but i ended up creating two slices of child records.
The first slice is the TODAY’s Date which is ADD, EDIT, DELETE are enabled.
Set [Parent].[Date] = TODAY()
The 2nd slice is NOT TODAY’s Date which is Read-Only or you can disable ADD only.
Set [Parent].[Date] <> TODAY()
Next step is creating two REF_ROWS(“Child Records”, “Parent ID”) in Parent’s Table.
Change both the Referenced table name with those two slices created.
Last step is change the SHOW_IF of both child refs
Today’s child records can be [Date] = TODAY()
Not Today’s child records can be [Date] <> TODAY()
There should be a better way but this one works for me at the moment.