Show TOC

Syntax documentationEvCVW Locate this document in the navigation structure

The EvCVW (CurrentView) function returns the current view setting for the specified dimension. When you double-click the cell containing the function, EvCVW returns a list of all the members for the dimension, optionally filtered by the FilterList parameter. See Current View Precedence.

Syntax Syntax

EvCVW(AppName,Dimension,FilterList)

AppName – The name of the application. There is a setting in Workbook Options that allows the system to memorize the current view with a workbook. If the setting is disabled (default) and you switch to a new application using EvHOT, the application in the current view changes. In addition, the other reports that you access in that session attempt to get data from that application. But if you enable the setting for a workbook, the current view reverts to the workbook's application setting when switching focus to it. See Workbook Options.

Dimension — The name of the dimension for which you want to return the members.

FilterList — (Optional) Allows you to return only members with specified property values.

End of the code.

Example Example

The following example returns the current view for the Finance application, Entity dimension. Double-click the cell to return a list of all members filtered by CALC=N and by GROUP=SALES.

EvCVW(Finance,Entity,CALC=N;GROUP=SALES)

End of the example.