Jump to content
Server Maintenance This Week. ×

FMPRO to XML w/ Stylesheet *solved*


JamesBand

This topic is 6053 days old. Please don't post here. Open a new topic instead.

Recommended Posts

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 by Guest
Link to comment
Share on other sites

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 by Guest
Link to comment
Share on other sites

This topic is 6053 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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.