Field value based on another field's value #312
Unanswered
rolandhesz
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm looking for a simple way to set the value of a metadata field based on the value of another field.
For example, I have a field called
status
with the possible values of'pending', 'planning', 'design', 'in progress', 'testing', 'done'
and I also have astatus-code
field with the values0, 1, 2, 3, 4, 5, -1
where the values0 - 5
are mapped to thestatus
values (i.e.pending
->0
,planning
->1
, etc.) and -1 is used if the value ofstatus
is invalid for some reason.What would be the easiest way to set this up? I was looking at "Accept a formula", but that option is not really well documented, and "Accept a lookup query" seems a bit heavy handed for this.
Beta Was this translation helpful? Give feedback.
All reactions