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 biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

populate an empty field from the result of 2 other fields

Status
Not open for further replies.

darkrenown

Technical User
Mar 23, 2006
1
GB
Hi

I have created a form that analyses the comitment of managers of a project I am managing. I have created 2 buttons for each of the following categories: influence / comitment 1 button is low with a value of 1 and the other is high with a value of 2.

What I am trying to do is populate a field (matrix)with 1 of 4 descriptions that autopopulates according to the values of influence and comitment.

So if influence = low (2) and commitment = high (2)then matrix = Champion

I think I need a select case statement but am at a loss

I would appreciate the help

Thanks
 
well, you almost had it, as you wrote it above;

If Me.influence = 1 And Me.commitment = 2 Then Me.matrix = "Champion"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top