I have to show columns: - send - receive - cancelled
In a report column by checking a value from DB which is "Status". So if Status equals 1 then send,=2 receive , = 3 cancelled.
The textfield expression in jasper report ( ? a:b) can only take one condition, how do i give multiple conditions ? something like if-else ladder ?
You can use a nested ternary statement to achieve this but it's messy.
For example:
(i == 1) ? "Send" : ((i == 2)? "Received" : "Cancelled");
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With