JamesBand Posted October 16, 2007 Posted October 16, 2007 (edited) I am exporting to a Word Doc with XML and an XSL Stylesheet... Things are actually going quite swimmingly. I am in the home stretch for this particular report. My final obstacle is a '|' pipe delimited field that I need to convert to 1 a line per paragraph. This portion of the XSL is below: ... The problem is that it is returning the first line for each IF set you see. (assuming I have 4 IFs) So with a field: "1|2|3|4|" It returns: 1 1 1 1 Instead of: 1 2 3 4 Anyone see what I am doing wrong here? Edited October 16, 2007 by Guest
JamesBand Posted October 16, 2007 Author Posted October 16, 2007 (edited) OK. So I figured it out. Apparently, the stylesheet treats all varaibles in a given function (ex. ...) as local. If the variable is changed during a function, it is is reset at the end of the function. So, with this is mind... the solution: I actually have up to 7 lines in the list, so I will put 10 IFs in there to allow for growth. Edited October 16, 2007 by Guest
Recommended Posts
This topic is 6246 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now