M
mark r
why does one work and the other not?
using . instead of !
using _ instead of # in fieldname#
DOESNOT WORK:
If IsNull(ME!mmm#) Then
Me.mmm# = Me!ssn
End IF
DOES WORK:
If IsNull(ME.mmm_) Then
Me.mmm_ = Me!ssn
End IF
using . instead of !
using _ instead of # in fieldname#
DOESNOT WORK:
If IsNull(ME!mmm#) Then
Me.mmm# = Me!ssn
End IF
DOES WORK:
If IsNull(ME.mmm_) Then
Me.mmm_ = Me!ssn
End IF