The fix was to modify the code from:master[i-1][j] = xmlData.nodes.item(i).nodes.item(j).value; the new lines ismaster[i-1][j] = (xmlData.nodes.item(i).nodes.item(j).value == null) ? "" : xmlData.nodes.item(i).nodes.item(j).value;This allows for null (empty) fields, allowing the sort to work correc...
I have googled and searched the forms for days for an answer, but have been unsucessful.Since the only thread I found is a year old, I wanted to start a new one instead of bumping the old oneRef : http://forums.adobe.com/message/3000436I am looking for a script to sort the data in a form based on us...