Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Conditional Calculated column in a list

Status
Not open for further replies.

Tusk

Technical User
Oct 21, 2002
48
0
0
GB
Hi All,

I'm trying to construct a list in MOSS 2007 to track Risks. Part of this is to calculate the risk score which is ok, but the next bit is proving tricky. I want to be able to allocate a High, medium and Low to a status column depending on the risk score. I can get it to do a 'medium' and 'low', but am having trouble getting it to do the 'high' as well. Here's my code so far:

=IF(AND([Risk Score]<=12, [Risk Score]>=8), "MEDIUM", "LOW")

I can't seem to get the 'high' bit to work. Any one any ideas on this?

Thanks

Tusk
 
Have solved my own problem :) Simple really, trying to be too complicated!

=IF([Risk Score]>11,"HIGH", IF([Risk Score]>7, "MEDIUM,"LOW"))

That does the trick.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top