Greetings, Concatenating data in BIRT is actually simple, the data field is placed: Ejm:
dataSetRow["IMPUESTO"]+" "+(dataSetRow["PVP"]*dataSetRow["IMPUESTO"])/100
where the use of the + "" + does the concatenation in the BIRT, but if I want to divide the content by some character as I should do strong>? because what you put up would result in:
Taking as an example that the tax is 12 , the amount without tax is 200 and the result of AMOUNT * TAX / 100 is < strong> 24
1224.00 < < < something like WTF?
If I want the same "Data" to be something like 12 - 24% or 12/24%
If I put something inside the + "/" + does not take the concatenation and shows me only the first one :( how can I make it work?