Expand my Community achievements bar.

SOLVED

How to get a Folder name to display as a column in a Document Version report?

Avatar

Level 4

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.

1 Accepted Solution

Avatar

Correct answer by
Level 4

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

View solution in original post

2 Replies

Avatar

Correct answer by
Level 4

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

Avatar

Level 4

Thanks Scott! this worked. Now I know where to add the keyword on this nested text.