The XML file I'm pulling from uses some tags with spaces in the middle. When I try to bang out an XLS style sheet, I can't figure out how to refer to those tags without throwing an error. For example, this doesn't work:
<xsl:for-each select="Product Id">
Putting it in single quotes doesn't work either:
<xsl:for-each select="'Product Id'">
I'm sure this is a simple fix for someone who knows what they're doing. Help?