Forum Discussion
- QuickBaseCoachDQrew Captainit would be best to have the status field be calculated. Typically, you might have a field called status Override and then a calculated Status field. The Status override would be a multiple choice field.
The Status field would be a formula like
I([Status Override] <> "", [Status Override], Today() >= [subscription start], "Active") - GraniteHomesQrew CadetSorry, what I meant was is there to automate this based on a date field. Like a CRON job, if a the date in a field equals today, do something to the record.
- QuickBaseCoachDQrew CaptainYou can use an Automation to run a saved table to table import and import the table into itself merging on Record ID#. Create a field which calculates to "Active" and map that field into the status field.
You may also just be able to use an Automation to just filer a list of qualifying records based on that date and then do the edit. That method would have a limit of 1,000 updates.