Forum Discussion
SuryaExpert
7 years agoQrew Assistant Captain
Can be done with a webhook or automation. If you need to record the old value and the new value of the order quantity field, use a webhook as you can access the old value as well as the new value in a webhook.
- DavidBrogdon7 years agoQrew Assistant CaptainWould I just create a record in a different table every time the value changed in the source table/record?
- SuryaExpert7 years agoQrew Assistant CaptainYes. Create another table and make sure the webhook adds a new row in that table whenever this field changes. Technically speaking, you could extend this to other fields on the orders table as well. It is your call, though.
- QuickBaseCoachD7 years agoQrew CaptainYes, you would create an audit trail child table and record the old and new values. if there are multiple fields to track, then include in the child table and identifier of the field that was changed. Like Cost or Sell.
Using an ACTION will allow you to record the old and the new value. Automations don't yet do the "old" value,. - DavidBrogdon7 years agoQrew Assistant CaptainThanks for the help.