Jaspersoft Studio 8.2 - How to export individual Excel column or not, depending on input parameter
Quote from lekrof on 6. February 2025, 13:14Dear all,
we have created a report that should be exported only as an Excel table. Depending on the value J/N of a parameter prompted when starting the report, one column with confidential values, situated in the midst of a whole table, should be exported or left out.
We have tried to set PrintWhen-Expression of header and table cell to: $P{p.vertraulich}=="J". However, now the column is empty, regardless of "J" or "N".
I strongly suspect that we cannot use Dynamic Jasper Library (suggested in another forum) in our environment.
Any ideas on how to proceed are highly welcome.
Dear all,
we have created a report that should be exported only as an Excel table. Depending on the value J/N of a parameter prompted when starting the report, one column with confidential values, situated in the midst of a whole table, should be exported or left out.
We have tried to set PrintWhen-Expression of header and table cell to: $P{p.vertraulich}=="J". However, now the column is empty, regardless of "J" or "N".
I strongly suspect that we cannot use Dynamic Jasper Library (suggested in another forum) in our environment.
Any ideas on how to proceed are highly welcome.
Quote from ThoZi on 6. February 2025, 15:46Hi lekrof,
If your Report Interpreter Language is "Java", propably your expression is wrong; must be:
"J".equals($P{p.vertraulich})
($P{p.vertraulich}=="J" would only work with Groovy)
Additionally on report level or global the following property should be set:
https://jasperreports.sourceforge.net/config.reference.html#net.sf.jasperreports.export.xls.remove.empty.space.between.columns
... so that the empty column is removed in Excel 🙂
Does that solve the problem?
Have fun!
Thomas
Hi lekrof,
If your Report Interpreter Language is "Java", propably your expression is wrong; must be:
"J".equals($P{p.vertraulich})
($P{p.vertraulich}=="J" would only work with Groovy)
Additionally on report level or global the following property should be set:
... so that the empty column is removed in Excel 🙂
Does that solve the problem?
Have fun!
Thomas