How can I change the % work formating (e.g.%22.5)

E

ein

Hi
I want o change the formating of the % work completion field. I want to have
option to put decimal points.

thanks
 
S

Sander

Hi ein,

I don't thnk this is possible. If you need more accuracy in progress
information, you will need to update the Actual Work field instead of the %
complete.

hope this helps,

Sander
 
J

Jack Dahlgren

You can't change the formatting of the existing columns, however you could
use a text field and a custom field formula to display the percentage value.

int([actual work]/[work] * 10000)/100 & "%"

should give you the value you are looking for. You might want to add a check
for non-zero values of work....

-Jack Dahlgren
 
Top