@Responses (Formula Language)

Returns the number of responses (in the current view) to the document.

Syntax

@Responses

Return value

numResponses

Special text. The number of responses to the document. Special text cannot be converted to a number.

Usage

Use @Responses in window title formulas. This function does not work in any other formula.

You cannot use this function in Web applications.

Examples

  1. This example returns 5 if there are five responses to the document.
    @Responses
  2. This formula returns the string No one has responded to this document if there are no responses to the current document; otherwise a blank is returned.
    @If(@Responses=0; "No one has responded to this document"; " ")