Search

January 5, 2026

GetInterviewTitle

The GetInterviewTitle function in XpressDox returns the title of the interview currently being run.

 

A title can be saved against a template when the file name does not present as a friendly easy-to-identify name. Users can then toggle between viewing file names or titles when exploring for templates in either the Desktop or Cloud Explorer. Read more about saving titles here.

 

Syntax:

«GetInterviewTitle()»

The function takes no parameters and returns a plain text string. Since the function was built to return the title at interview time, it is more likely to be used in a scenario like this:

«CaptureDataElements(Owner_name,Renter_name,DocumentSaveTitle)»
«OnExitSet(Owner_name,DocumentSaveTitle,Value,(),concat(GetInterviewTitle(),’ ‘,Owner_name,’ & ‘,Renter_name),,EvenWhenNotEmpty)»
«OnExitSet(Renter_name,DocumentSaveTitle,Value,(),concat(GetInterviewTitle(),’ ‘,Owner_name,’ & ‘,Renter_name),,EvenWhenNotEmpty)»