Expandir la barra de logros de la comunidad.

Don’t miss the Workfront AMA: System Smarts & Strategic Starts! Ask your questions about keeping Workfront running smoothly, planning enhancements, reporting, or adoption, and get practical insights from Adobe experts.

Mark Solution

Esta conversación ha sido bloqueada debido a la inactividad. Cree una nueva publicación.

RESUELTAS

Report - I'm having trouble showing the desired format of a numeric value in a report column, which comes from a calculated field on a custom form.\nI also want to have a 4th sort option.

Avatar

Level 5

I have a custom form with a calculated field, to show the average of the overall effort. "Overall Effort Average"

The custom form calculation is: AVERAGE(UX Effort,Design Effort,Dev Effort)

My report includes this calculated field as a column,

I would like to show whole numbers in my report, or perhaps just to one decimal point.

  • As an example, I am seeing “4.3333333333” for one item but would like to see “4” or “4.3”.
  • The text mode of the column is below. Is there a different valueformat that I should use?

displayname=

linkedname=direct

namekey=Overall Effort Average

querysort=DE:Overall Effort Average

sortOrder=3

sortType=asc

textmode=true

valuefield=Overall Effort Average

valueformat=customNumberAsString

Additionally, can I utilize text mode to sort by a 4th column? I’m currently sorting by

  1. Business Value
  2. Priority
  3. Overall Effort Average
  4. I would like to add a 4th sort on the Entry Date column

Temas

Los temas ayudan a categorizar el contenido de la comunidad e incrementan la posibilidad de encontrar contenido relevante.

1 solución aceptada

Avatar

Respuesta correcta de
Community Advisor

Hi Cathy,

To get the values to return as a whole number in your report, use the text mode below in your column.

displayname=

linkedname=direct

namekey=Overall Effort Average

querysort=DE:Overall Effort Average

sortOrder=3

sortType=asc

textmode=true

valuefield=Overall Effort Average

valueformat=customNumberAsString

valueexpression=ROUND({DE:Overall Effort Average},0)

Here we have added a value expression to the code which tells Workfront to round the custom field to 0 decimal places. If you wanted this to have one decimal place you would simple replace the '0' with a '1' in the value expression.

I'm not 100%, but I don't believe that you can sort by a 4th column, I think that 3 is the limit.

Best Regards,

Rich.

Ver la solución en mensaje original publicado

2 Respuestas

Avatar

Respuesta correcta de
Community Advisor

Hi Cathy,

To get the values to return as a whole number in your report, use the text mode below in your column.

displayname=

linkedname=direct

namekey=Overall Effort Average

querysort=DE:Overall Effort Average

sortOrder=3

sortType=asc

textmode=true

valuefield=Overall Effort Average

valueformat=customNumberAsString

valueexpression=ROUND({DE:Overall Effort Average},0)

Here we have added a value expression to the code which tells Workfront to round the custom field to 0 decimal places. If you wanted this to have one decimal place you would simple replace the '0' with a '1' in the value expression.

I'm not 100%, but I don't believe that you can sort by a 4th column, I think that 3 is the limit.

Best Regards,

Rich.

Avatar

Level 5

Thank you, @Richard Leek‚!