Is it possible to use an if / elseif / elseif / ... / else construct with JXLS?
In the docu I see
jx:if(condition="employee.payment <= 2000", lastCell="F9", areas=["A9:F9","A18:F18"])
I already used it and it works fine. But, taking this example, I want another area for when my employee has a payment of <= 4000, and another if he has <= 10000.
How would I accomplish that? It seems to me that there is only a if / else possible?