I am very new to XSLT and want your help
I have an XML with below format :
<?xml version="1.0" encoding="UTF-8"?>
<Rowset>
<Row>
<ActualHour>0.64</ActualHour>
</Row>
<Row>
<ActualHour>0.64</ActualHour>
</Row>
<Row>
<ActualHour>0.64</ActualHour>
</Row>
</Rowset>
I want to know how can I check whether "ActualHour" has same values across different "Row" node using XSLT?
Thanks in advance.