Hi Amit,
You should be able to try to select the element you are after & then check whether you have a node before accessing the Text property, e.g.
Code:
Dim myText: myText = ""
Dim myEl: Set myEl = .SelectSingleNode("xml...nodes")
If Not myEl Is Nothing Then
myText = myEl.Text
End If
HTH,
Chris