How to get a Folder name to display as a column in a Document Version report? | Community
Skip to main content
New Participant
March 6, 2024
Solved

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

  • March 6, 2024
  • 1 reply
  • 742 views

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.

Best answer by Scott_Goodwin

Hello @pat_paterson 

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

1 reply

Scott_Goodwin
Scott_GoodwinAccepted solution
New Participant
March 6, 2024

Hello @pat_paterson 

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

New Participant
March 6, 2024

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