R
requeth
I have 12 possible error codes that can be placed in an attribute, and
multiple attributes with this in an XML file. I am attempting to use an
XSLT (which makes the data viewable to non technical people) to display
some statistics about these error codes. Specifically, how many of each
type there are. My thought was to create some code using variables, and
do $err01+1 (or ++), but as far as I can tell you are not allowed to
manipulate variables once called. Are any functions available that
would let me complete a count of each error type, and output them each
individually? The only bad solution I had was every time it found an
error code, create a variable +1 on the name and count them all up
after, but that's horrific to me.
Any thoughts would help,
Thanks
multiple attributes with this in an XML file. I am attempting to use an
XSLT (which makes the data viewable to non technical people) to display
some statistics about these error codes. Specifically, how many of each
type there are. My thought was to create some code using variables, and
do $err01+1 (or ++), but as far as I can tell you are not allowed to
manipulate variables once called. Are any functions available that
would let me complete a count of each error type, and output them each
individually? The only bad solution I had was every time it found an
error code, create a variable +1 on the name and count them all up
after, but that's horrific to me.
Any thoughts would help,
Thanks