Hello all
I have a single formula field called Threat Score
I have multiple single select fields with answers of Yes,No, Na.
I am trying to have a final threat score after all the single select fields are answered.
For example
Switch({Is there leaves, needles or other vegetation on roofs, gutters, decks, porches, stairways, etc.?},
‘Yes’, 0,
‘No’, 4,
'Na’, 4
)
Switch({Is there any dead and dying trees, branches and shrubs or other plants adjacent to or overhanging buildings?},
‘Yes’, 0,
‘No’, 4
'Na’, 4
)
If the user chooses no for both fields the formula field should have a sum of 8.
How would I combine multiple fields into a single formula to come up with a final sum.
Thank you
Josh