Hi All,
Trying to see if it is possible to have the file folder name of a document to display in a Document Version report. I was able to get the folder name to display in a document report using the following in text mode.
displayname=Folder
listmethod=nested(folders).lists
textmode=true
type=iterate
valueexpression={name}
valueformat=HTML
However, I not sure how to replicate this in a doc version report. Any help in the logic would be greatly appreciated.
Solved! Go to Solution.
Views
Replies
Total Likes
Hello @SethPorrazzo
Hopefully this helps. It looks like it works for me but I don't have much test data to work with.
displayname=Folder
listmethod=nested(document.folders).lists
textmode=true
type=iterate
valueexpression={name}
valueformat=HTML
If your happy can you mark it as the accepted solution please so other people can find it thank you
Hello @SethPorrazzo
Hopefully this helps. It looks like it works for me but I don't have much test data to work with.
displayname=Folder
listmethod=nested(document.folders).lists
textmode=true
type=iterate
valueexpression={name}
valueformat=HTML
If your happy can you mark it as the accepted solution please so other people can find it thank you
Thanks Scott! this worked. Now I know where to add the keyword on this nested text.