Skip to main content
Nintex Community Menu Bar

Hi,

 

I am trying to round an amount within Nintex responsive forms. I currently have an web request field that outputs the amount of  $4.32905 but need to be able to round and see $4.33 instead.

I used the following function below but get 4. Am I missing something?


Formula:
round(convertToNumber([Form].[Cost Web request].[Label],2))

Hi ​@jpacheco

It appears that you have placed one of your closing brackets in the incorrect position.
Try the formula :round(convertToNumber([Form].[Cost Web request].[Label]),2)