B
Bill
Hi,
I'm trying to figure it out how to split two Usergroups then enter either
Group A or Group B. Here I wrote but not too sure if I did the right thing.
Your help would be much appreciated.
If vUserGroupName = "Group A" then
If Me.NewRecord Then
If IsNull(Me![New]) Then
Me![UserGroup] = "Group A"
End if
End If
If vUserGroupName = "Group B" then
If Me.NewRecord Then
If IsNull(Me![New]) Then
Me![UserGroup] = "Group B"
End if
End If
I'm trying to figure it out how to split two Usergroups then enter either
Group A or Group B. Here I wrote but not too sure if I did the right thing.
Your help would be much appreciated.
If vUserGroupName = "Group A" then
If Me.NewRecord Then
If IsNull(Me![New]) Then
Me![UserGroup] = "Group A"
End if
End If
If vUserGroupName = "Group B" then
If Me.NewRecord Then
If IsNull(Me![New]) Then
Me![UserGroup] = "Group B"
End if
End If