D
dbl
Hi I have a situation where I need to update one field with 25% of the work
and the remaining 75% to the other field.
The code below is how it is set up now.
I need it to allocate 75% of the claims to field PIPossDon (which is a new
field) and only 25% to the field PIPoss
If Me.cboClaimCode.Column(3) = 1 Then
Me.PIPoss = True
Else
Me.PIPoss = False
End If
How do I go about this? As you can see it will only update the field PIPoss
to true if the ClaimCode = Column 3 which is where it still needs to get the
infomation from to update the 2 fields.
Any help would be very much appreciated.
Bob
and the remaining 75% to the other field.
The code below is how it is set up now.
I need it to allocate 75% of the claims to field PIPossDon (which is a new
field) and only 25% to the field PIPoss
If Me.cboClaimCode.Column(3) = 1 Then
Me.PIPoss = True
Else
Me.PIPoss = False
End If
How do I go about this? As you can see it will only update the field PIPoss
to true if the ClaimCode = Column 3 which is where it still needs to get the
infomation from to update the 2 fields.
Any help would be very much appreciated.
Bob