Embedding a Project's URL field value behind descriptive text in a task-level report
Our users are inserting an intranet URL in the Project's existing URL field, in the Overview. We share a task-level report that has a column for the Project URL, which we would like to shorten to a "View" link, and I have spent HOURS researching and testing using calculated fields and textmode columns. I've FINALLY managed to get the embed to work correctly in a Content custom field in a project-level report, but have again hit a brick wall with the real use case, a task-level report.
I had made what I thought were the correct tweaks to bring in the project-level data, but I'm missing something, as the new column stays blank in the task report. Here is the functional project-level code...
displayname=Content
link.url=URL
linkedname=html(URL)
textmode=true
valueexpression=IF(ISBLANK({URL}),"","View")
valueformat=HTML
And here is my faulty task-level code...
displayname=Content
link.url=URL
linkedname=html(URL)
textmode=true
valueexpression=IF(ISBLANK({Project}.{URL}),"","View")
valueformat=HTML