Hello, I am trying to create an inventory list, once the the user clicks “Check out Button” the Quantity column value subtract 1 (-1) [ which is easy part to do], but I am also trying to update the status column once Quantity Column value = 0, modify the status to “Out of Stock”.
Thanks
Hi @Khaled_Makarem,
welcome to Coda Community 
It would be always helpful to have a shared example, in order to be more specific to the context.
Anyway, maybe RunActions() formula could help.
Something like:
RunActions(thisRow.ModifyRows([Quantity], [Quantity]-1), if(thisRow.[Quantity] = 0, thisRow.ModifyRows([Status], "Out of Order"), _noop()))
[Didn’t check syntax: I’m on my mobile]
Let me know if it helps.
2 Likes
Hi @Federico_Stefanato,
Thank you 
I appreciate your feedback. I tried It and it is working fine
It is weird that I was trying something similar to what you provided but no luck.
Thank you again <3
1 Like