Hi all
I cannot seem to get this to work any suggestions, the isnull is just being ignored
[Forms]![FRM_ALL_LoggedSplashPage]![DefaultExamLocation]
is a separate form which runs in the back ground,
I have tried
If Isnull ([Forms]![FRM_ALL_LoggedSplashPage]![DefaultExamLocation]) Then
Me.SubFormHR.Visible = True
Else
Me.SubFormHR.Visible = false
-------------------------------
If [Forms]![FRM_ALL_LoggedSplashPage]![DefaultExamLocation] =" " Then
Me.SubFormHR.Visible = True
Else
Me.SubFormHR.Visible = false
both seem to ignore a blank field but work fine when it has something in it
I cannot seem to get this to work any suggestions, the isnull is just being ignored
[Forms]![FRM_ALL_LoggedSplashPage]![DefaultExamLocation]
is a separate form which runs in the back ground,
I have tried
If Isnull ([Forms]![FRM_ALL_LoggedSplashPage]![DefaultExamLocation]) Then
Me.SubFormHR.Visible = True
Else
Me.SubFormHR.Visible = false
-------------------------------
If [Forms]![FRM_ALL_LoggedSplashPage]![DefaultExamLocation] =" " Then
Me.SubFormHR.Visible = True
Else
Me.SubFormHR.Visible = false
both seem to ignore a blank field but work fine when it has something in it