scoring system

hazell

Registered User.
Local time
Today, 06:36
Joined
Jul 9, 2013
Messages
54
Hi,
I have a form in which I am trying to build a matrix scoring system and need some help please.

I have two fields one called Offending Consequences and one called Offending Likelihood. The first field is limited to a list 1 to 5 and the second to a list A to E. What I want to do in a field called Offending Score is a kind of grid where:

1A scores 2 and is coloured green
up to
5E scores 10 and is coloured red

How do I get the Offending Score field to register the whole list of 25 possible combinations, 9 possible scores and 5 possible colours? Is this likely to be very complicated? My knowledge and understanding of access dbs is only moderate.
 
You will need a subform for this linked and your criteria added. Example: Not Complete, but you get the idea!

If 1A = 2 Then
Me!SomeField.ForeColor = vbGreen
End If
 

Users who are viewing this thread

Back
Top Bottom