Summary
Creating column dynamically in excel template
Content
We are working on a BIP report where we need the output in excel. Here we need to create column at run time depending on data in xml. For example, the xml can have below session . Here we have two subjects, so we create two columns in excel. If XML have 5 subjects, we need to create 5 columns. We achieved the same using split–column in RTF, but since we have limitation of 63 columns in RTF and our report will have huge number columns till 1000, we plan to use excel template. Can anyone please help or suggest is this dynamic creation of column is possible in excel. Any help will be really great.
<SUBJECTS>
<SUBJECT>
<NAME>English</NAME>
<MARK>90</MARK>
</SUBJECT>
<SUBJECT>
<NAME>Maths</NAME>
<MARK>90</MARK>
</SUBJECT>
</SUBJECTS>