Hello,
I am trying to build a risk log in smartsheets that I currently have in excel, but I cannot get the formula to work.
I am trying to take the impact data and the probability date to give me a rating. This is what I am using at the moment but as you can see I am getting #unparseable.
=IFS(
AND([Impact]@row = "Insignificant", [Probability]@row = "Rare"), "Unlikely",
AND([Impact]@row = "Insignificant", [Probability]@row = "Unlikely"), "Possible",
AND([Impact]@row = "Insignificant", [Probability]@row = "Possible"), "Likely",
AND([Impact]@row = "Insignificant", [Probability]@row = "Likely"), "Almost Certain",
TRUE, "Rare" /* default or fallback */
)
Can anyone advise where I am going wrong or if this is not possible yet within smartsheets? or if there is a work around 😀
All help welcome as its driving me nuts.
Thanks
Abi