Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting multiple sheets in same excel output using BIRT reporting tool(opensource version)

Tags:

excel

birt

I need to get multi tabbed output in the final report output in excel fromat. I'm using birt 4.2.0. Any help????

like image 921
Abinash Koirala Avatar asked Sep 21 '12 12:09

Abinash Koirala


2 Answers

From what I've gathered, messing around BIRT, only way to get multi sheet (I assume this is what you consider under term multi tabbed output) in excel format, is possible using custom emitters for xls.

For more info, check out these sites:

  • Replacing default birt emitters
  • How to create multiple sheets in excel
like image 179
Daniel Fath Avatar answered Nov 16 '22 18:11

Daniel Fath


     options = new EXCELRenderOption(outputFormat: "xls")
     options.setEmitterID("uk.co.spudsoft.birt.emitters.excel.XlsEmitter" )

This creating 40 record per sheet for me . i think no options except the emitter so please try it , but my problem is how list them in a single sheet all of the records.

like image 35
Daniel Adenew Avatar answered Nov 16 '22 16:11

Daniel Adenew