Remove standard data from certain tasks on a project. | Community
Skip to main content
SamanthaIsin
Level 7
January 19, 2021
Solved

Remove standard data from certain tasks on a project.

  • January 19, 2021
  • 1 reply
  • 692 views

I would like to not display the status option for my parent tasks on a project. Can I build this out with a custom view? Can I accomplish this with an IF statement? Something else?

As you can see in the screenshot below my parent tasks do not have assignments. I don't want them to display a status option either. Help?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by TealeMcCleaf

Hi Samantha,

This worked for me to create a new View that does not show the status of parent tasks.

displayname=Status

enumclass=com.attask.common.constants.TaskStatusEnum

enumtype=TASK

linkedname=direct

namekey=status

querysort=status

textmode=true

type=enum

valueexpression=IF({numberOfChildren}=0, {status})

valueformat=customDataLabelAsString

Hope this helps,

Teale

1 reply

TealeMcCleafAccepted solution
Level 6
January 20, 2021

Hi Samantha,

This worked for me to create a new View that does not show the status of parent tasks.

displayname=Status

enumclass=com.attask.common.constants.TaskStatusEnum

enumtype=TASK

linkedname=direct

namekey=status

querysort=status

textmode=true

type=enum

valueexpression=IF({numberOfChildren}=0, {status})

valueformat=customDataLabelAsString

Hope this helps,

Teale

SamanthaIsin
Level 7
January 21, 2021

Thanks Teale!