When I use detailed view, the header I use is a name selected from a table and is referenced in many places. I want to have it in a header format but it doesn’t work if it is from a select list table. I tried adding another column and use totext() which works and allows me to change the format. However, it always has a red indicator saying a have a bad reference when I do this. And there is nothing referring to this newly added column. Is this a bug or is there another way to do this?
Hi Chris,
Make sure that the new column is ‘Text’ type and not ‘Relation’ and also it is better to refer to the field that contains the actual name of the object instead of just converting the object to text.
For example: thisRow.Project.Name
instead of thisRow.Project.ToText()
If this doesn’t solve your issue please share a doc.
Hope this helps,
Pablo
1 Like
You have to reference the list column with the additional text column refering to it with thisrow.list.totext()
That solved it! Thank you