SQL Method
Why not concatenate all 3 fields that you need in a query that you use yourself (suppose you're with Postgres .),
select (name || address|| to_char(age)) as data from my_table
At Ireport
As suggested,
$F{Name} + "." + $F{Address} + "." + $F{Age}.toString()
also works if necessary to make it work from the report.
Make sure all fields have the same data type.
source share