I'm parsing an .xml file like:
<xml>
<normalRange>100-200</normalRange>
<value>83</value>
</xml>
In an .xls stylesheet I need to display a value indicating whether the value is within the normalRange, below it, or above it.
This is a very common problem when displaying Human Readable results from the CCR (Continuity of Care Record in Healthcare HL7 messaging) xml document.
Note that element name "xml" is reserved by XML 1.0 standard, so it's probably good idea to avoid it.