Hi,
I am trying to create a table in XSL in which the number of columns depends on a given XML. For example, the XML below needs to have three columns, each with the title of the corresponding <Name> (but the number of columns needs to depend on the number of <FormulaValue> elements present a given XML).
I appreciate all help...I've been trying to figure this out for days.
Thank you,
Christine
XSL code:
[HTML]
<Step>
<FormulaValue>
<Name>CIP_FEED_PUMP_SPEED</Name>
<Display>false</Display>
<Value/>
<Real>75</Real>
<EngineeringUnits></EngineeringUnits>
</FormulaValue>
<FormulaValue>
<Name>CIP_XFER_PUMP_SPEED</Name>
<Display>false</Display>
<Value/>
<Real>35</Real>
<EngineeringUnits></EngineeringUnits>
</FormulaValue>
<FormulaValue>
<Name>FEED_FLOW_RATE</Name>
<Display>false</Display>
<Value/>
<Real>5.7</Real>
<EngineeringUnits></EngineeringUnits>
</FormulaValue>
</Step>
[/HTML]