URL links to some tabs in a calculated field no longer work in NWE. Here's a fix
I have calculated fields with links to:
custom forms
CONCAT("https://MYCOMPANY.my.workfront.com/project/view?ID=", ID , "&activeTab=form-customdata")
documents
CONCAT("https://MYCOMPANY.my.workfront.com/project/view?ID=", ID , "&activeTab=list-project-documents")
updates
CONCAT("https://MYCOMPANY.my.workfront.com/project/view?ID=", ID , "&activeTab=tab-project-updates")
In NWE, Documents and Updates work but Custom Forms no longer works. Probably because custom forms isn't a straight link anymore.
The custom form calculation that works is:
CONCAT("https://MYCOMPANY.my.workfront.com/project/view?ID=", ID , "&activeTab=overview")
This takes you to the overview section of your project where the custom forms are folded up at the bottom (It's annoying that they're folded up but maybe WF will change that at some point).
I then add a column to my Project report like this:
displayname=Project Form
link.url=customDataLabelsAsString(Project Custom Form_)
linkedname=html(URL)
textmode=true
valueexpression=IF(ISBLANK({DE:Project Custom Form_}),"","Form Link")
valueformat=HTML
where "Project Custom Form_" is the name of my calc field and "Form Link" is what's displayed in the column.
This creates a clickable link that just says "Form Link"
I'd love to hear ways to make this more robust, like maybe adding an icon or button to click on if that's even possible.
