Monday, September 5, 2022

Pentaho Tips - 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

AWS - Build A Serverless Web App

 ‘Run your application without servers’. The idea presented by the cloud service providers is fascinating. Of course, an application runs on...