Template View Assignment Hours | Community
Skip to main content
New Participant
October 20, 2023
Solved

Template View Assignment Hours

  • October 20, 2023
  • 1 reply
  • 524 views

Is there a way to create a text mode in View see assignment planned hours for each task inside the templates? If so, how would I go about building it?

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 KellieGardner

You can add a text mode column to your view with the following code and it should get you what you need.

 

 

For actual assignments

valueexpression=CONCAT({workRequired}/60 ,' Hours - ',{assignedTo}.{name})
listdelimiter=<br>
listmethod=nested(assignments).lists
valueformat=HTML
name=Wrk Assignment(s)
width=300
textmode=true
type=iterate
usewidths=true

 

 

For Roles 

listdelimiter=<br>
listmethod=nested(assignments).lists
name=Wrk Assignment(s)
textmode=true
type=iterate
usewidths=true
valueexpression=CONCAT({workRequired}/60 ,' Hours - ',{role})
valueformat=HTML
width=300

 

 

 

1 reply

KellieGardner
KellieGardnerAccepted solution
New Participant
October 20, 2023

You can add a text mode column to your view with the following code and it should get you what you need.

 

 

For actual assignments

valueexpression=CONCAT({workRequired}/60 ,' Hours - ',{assignedTo}.{name})
listdelimiter=<br>
listmethod=nested(assignments).lists
valueformat=HTML
name=Wrk Assignment(s)
width=300
textmode=true
type=iterate
usewidths=true

 

 

For Roles 

listdelimiter=<br>
listmethod=nested(assignments).lists
name=Wrk Assignment(s)
textmode=true
type=iterate
usewidths=true
valueexpression=CONCAT({workRequired}/60 ,' Hours - ',{role})
valueformat=HTML
width=300