I'm quite new to this, could anyone point out why my calculated field isn't working
Im trying to use a matrix to output a value of critical, high, medium or low
The field Im using is ImpUrg_Total, this is my current failure
=IF(ImpUrg_Total<2,"Critical",IF(AND([ImpUrg_Total]>=2,[ImpUrg_Total]<4,"High",IF(AND([ImpUrg_Total]>=4,[ImpUrg_Total]<9,"Medium",IF([ImpUrg_Total]=>9,"Low"))))))