D
DS
Is there a way to write a statement for this without using IF over and
over again?
If any one of these 3 boxes are Null then do this.....
As opposed to...
If IsNull(Text1) Then
DoCmd.OpenForm"1"
ElseIf IsNull(Text2) Then
DoCmd.OpenForm"2"
ElseIF IsNull(Text3) Then
DoCmd.OpenForm"3"
Else:
Do the Following....
End If
Thanks
DS
over again?
If any one of these 3 boxes are Null then do this.....
As opposed to...
If IsNull(Text1) Then
DoCmd.OpenForm"1"
ElseIf IsNull(Text2) Then
DoCmd.OpenForm"2"
ElseIF IsNull(Text3) Then
DoCmd.OpenForm"3"
Else:
Do the Following....
End If
Thanks
DS