P
PowerPoint Jedi
I am trying to run an event that checks the status of a field and if it is
null should do one action and if not null should do another. I can't seem to
get it to work. Any idea here is the code
Private Sub Quality_Approval_AfterUpdate()
If Forms![ERGR]![ME Approval] = Null Then
Forms![ERGR]![Quality Approval] = ""
Else
DoCmd.OpenForm "frmPassWord", acNormal, , "[Name] = '" & Me![Quality
Approval] & "'"
Forms![frmPassWord]![Source] = "Quality"
End If
End Sub
No matter what the value of [ME Approval] it performs the else action
Thanks
null should do one action and if not null should do another. I can't seem to
get it to work. Any idea here is the code
Private Sub Quality_Approval_AfterUpdate()
If Forms![ERGR]![ME Approval] = Null Then
Forms![ERGR]![Quality Approval] = ""
Else
DoCmd.OpenForm "frmPassWord", acNormal, , "[Name] = '" & Me![Quality
Approval] & "'"
Forms![frmPassWord]![Source] = "Quality"
End If
End Sub
No matter what the value of [ME Approval] it performs the else action
Thanks