on ‎2007 Nov 16 1:39 AM
Post Author: rjstassi
CA Forum: Formula
I have a custom field with the string "("&&"Complete)"
the formula works - however, I need the rounded to the whole percent i.e. 41.67 => 42 and I need the % symbol. I know I can add the '%' symbol into the string portion, but I cannot round the number as it becomes recognized as a string.
Rick in Sacramento
Request clarification before answering.
Post Author: rjstassi
CA Forum: Formula
worked great. (I used suggestion 2:) Thanks
Rick
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Post Author: bettername
CA Forum: Formula
There's two spring-to-mind options:
1: Place a textbox on the page, type in the text bits "( % Complete)" and then drag+drop the field into the middle of the text string in the textbox. You can then format the number portion of the textbox as another other normal number field. I prefer to leave the % sign as part of the textbox rather than as part of the number formatting. For no particular reason, mind you. 2: Change the formula to be: "("&totext(,0)&" % Complete)". This will convert the number to text (the ,0 bit rounds it) and allows it to be concatenated with other bits of text.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 8 | |
| 5 | |
| 5 | |
| 4 | |
| 4 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.