Hi! I’m trying to create a new field on my table that is a combination of two different Single Select fields. One column is the Likelihood of an event happen (1- Rare, 2- Unlikely, 3- Possible, 4-Likely, 5- Almost certain) and the other column is the Impact of that event happening (1-Insignificant, 2-Minor, 3-Moderate, 4-Major, 5-Catastrophic). The new column that I want to create will give me a “score” from the combination of the Likelihood and the Impact (1- Low Risk, 2-Moderate Risk, 3-High Risk, 4- Critical Risk). So for example, if the event is Almost Certain (5) and but the consequences are 1- Insignificant that will mean 1-Low Risk. Could someone give me guidance on automatizing this score? Thanks!
Solved
New score from two columns
Best answer by Tim_Sullivan
Interesting question - I’m working on a base for work with a similar scenario for determining risks associated with our tree inventory.
I think I’d figure out all the possible combinations, assign them a final risk, and use switch() to display the final score.
Concatenate(Likelihood,Impact) = Rare-Low Risk, Rare-Moderate Risk…
Then use switch() to display the final value:
switch(“Rare-Low Risk”,1, “Rare-Moderate-Risk”,2, etc.
Then I’d wrap it all up into one formula so you don’t need any helper fields:
SWITCH(CONCATENATE({Likelihood},{Impact}),“RareMedium”,2)
similar to what I did in the “Final Risk” column in this base:
Login to the community
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.

