Ravi
Ravi

Reputation: 8209

MS Excel XML Header Footer

I'm generating a excel report in a XML Excel format. In this report I have to repeat the top 25 rows and bottom 10 rows on each page, like a header and a footer. Can you please guide me on the code that is required to accomplish this task. I'm using ColdFusion. Thank you.

Ravi

Upvotes: 1

Views: 799

Answers (1)

Sharjeel Aziz
Sharjeel Aziz

Reputation: 8535

You should be able to use the cfinclude tag like this

<cfinclude template="./header.xml" />

Upvotes: 1

Related Questions