Monday, September 5, 2022

[Tips] Pentaho - Use Formula Step

 

Scenario

[Formula] step is powerful in terms of calculate a new value based upon the existent fields in transformation. 

With the embedded functions, you can build complicate calculation statements to meet the transformation needs.


Example

Get system info Step from Input Group, which reads the current system date and passes it to the next step, Formula step.

The transformation formula, shown as below, outputs the current date with the format of 'yyyymmdd'. 

    YEAR([sysDate])*10000 + MONTH([sysDate])*100 + DAY([sysDate])


Output: 


No comments:

Post a Comment

[Tips] Spring Boot - React Calls REST APIs Built on WebFlux with API Key Authentication

Last updated on:   When building a web app, we’d have a variety of considerations. Functions, along with operability, are what we mu...