Hello Guys,
I have a section of my form that may contain no data what so ever and therefore i need to have a code that if theres no data a field to put a space and if there is a value to put the value in.
Heres the code im using and yet im getting Error 94 Invalid use of null
Any advice would be great.
Topham
I have a section of my form that may contain no data what so ever and therefore i need to have a code that if theres no data a field to put a space and if there is a value to put the value in.
Heres the code im using and yet im getting Error 94 Invalid use of null
PHP:
If [MEBondingConLocation1] = Null Then
.ActiveDocument.Bookmarks("Text37").Select
.Selection.Text = " "
Else
.ActiveDocument.Bookmarks("Text37").Select
.Selection.Text = Me.M_EBondingConLocation1
End If
Any advice would be great.
Topham