karlaeprintingedge.com Posted October 4, 2017 Posted October 4, 2017 Could someone help me with a rule to convert a whole number to a decimal (i.e. 2010 to 20.10)? Thank you. Quote
Dan Korn Posted October 4, 2017 Posted October 4, 2017 return FormatNumber("0.00", 2010 / 100); Or, depending on your data, you probably want something like: return FormatNumber("0.00", StringToNumber(Field("YourFieldName")) / 100); Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.