Transforming indicator values using script

You can transform the indicator values using the transformation script.

How to access the column values?

Accessing the value we want to process is a key issue. Scripts provide a function value() which returns the current value. There are more advanced possibilities to access values:

String value() - returns the current value
String value(String columnCode) - returns the value of the specified column
LocalDate rowDate() - returns date of the current row
LocalTime rowTime() - returns time of the current row

To get more information about the transformation, visit the developers section Transformation scripting.

Next Steps