Avatar

Level 2

Thanks for the reply Niall.

I ended up chanigng the numeric field to a decimal field instead, and added the following display pattern: num{zzzz9.99'%'}

So although the user can't enter a % symbol into the field, a % symbol automaticaly populates when the user enters a number.

My criteria involved ensuring that a user could not enter a number with more than two numbers after the decimal, so I also set a trailing digits max of 2 (in the Obect > Field settings)

This is the FormCalc formula I used in the "calculate" event to calculate the salary increase amount request: (DecimalField1 * NumericField2) *.01 + NumericField2

This formula is meant to calculate the salary amount a manager is requesting their employee's salary be increased to.