| 
 | 
Has your document been read in? If it has been read and has reached the node, the following can be achieved 
For i = 0 To rootNode.childNodes.length-1 
  If rootNode.childNodes (i) .nodeName = "ROWDATA" Then 
    for j = 1 to rootNode.childNodes (i) .childNodes (j) 
      if rootNode.childNodes (i) .childNodes (j) .nodeName = "ROW" then 
         msgbox rootNode.childNodes (i) .getAttribute ("PerName") 
      end if 
    next j 
  end if 
next i |   
 
 
 
 |