Hi,
I just wanted to post here an error that I came across and could successfully solve.
When using the Formula step, in Spoon 6.1.0.1-196, i got the following error:
I've ommited the formula itself because it is too long. After trying a few modifications in my formula, I found the problem: there was a call to the logical AND function as the following:Error calculate formula. Formula IF (.....))))) output field: NovaSituacao, error is: LibFormulaErrorValue{errorCode=0, errorMessage=Unexpected}
I solved the problem by adding a ZERO before the minus operator.Code:AND([Days] > -[CalculatedDays]; [Days] <= 0)
So, after that modification I got:
and the LibFormulaErrorValue was gone.Code:AND([Days] > 0 - [CalculatedDays]; [Days] <= 0)
I hope it may help someone to "escape" from this error as well, at least for this situation.
PS: Do you guys think I should open an Issue on Pentaho JIRA for this?