Forum Discussion
- QuickBaseCoachDQrew CaptainCan you tell me more about this formula Text field. You can use a form rule as long as the field is changing as a result of a user editing the record.
- JasonBeaverQrew CadetFormula text field is exactly a numeric (summary) type. When a certain number comes into this field, it changes the value in a formula text field. I want to be able to change the value in the multiple choice field too.
- QuickBaseCoachDQrew CaptainThe only way to do this will be to make a new field which is a formula field which is based on the Done field and the manual field. Multiple choice field.
- ForrestParkerQrew CadetWhat if you simply made Field B a formula text field instead of a text multiple choice field.
Sample formula:
if
(
[Field A]="Done"
,"Finished"
,"Pending"
) - JasonBeaverQrew CadetWhat would the formula look like if I did what you are saying?
- QuickBaseCoachDQrew CaptainYou would need to say in words what the formula should do and then i can help you with the syntax
- JasonBeaverQrew CadetWhen Vehicle Status ID changes to 1, then Vehicle location changes to DELIVERED.
- QuickBaseCoachDQrew CaptainThe formula for a new formula text field called [Vehicle Location or Delivered]
will be
IF([Vehicle Status ID] = 1, "DELIVERED", [Vehicle location])