Dim vURL As Variant _
, sURL As String
vURL = Null
With Me.Street
If Not IsNull(.Value) Then
vURL = (vURL + " ") & .Value
End If
End With
With Me.suburb
If Not IsNull(.Value) Then
vURL = (vURL + " ") & .Value
End If
End With
With Me.St 'State
If Not IsNull(.Value) Then
vURL = (vURL + " ") & .Value
End If
End With
With Me.PostCode
If Not IsNull(.Value) Then
vURL = (vURL + " ") & .Value
End If
End With
sURL = "https://maps.google.com/maps?q=" & vURL
Application.FollowHyperlink sURL