Returns information about reports defined for the active workbook. Use REPORT.GET to return information you can use in other macro commands that manipulate reports.
If this function is not available, you must install the Report Manager add-in.
Syntax
REPORT.GET(type_num, report_name)
Type_num is a number from 1 to 3 specifying the type of information to return, as shown in the following table.
|
|
|
|
|
|
|
|
Report_name specifies the name of a report in the active workbook.
Remarks
Report_name is required if type_num is 2 or 3.
Example
The following macro formula returns an array of reports from the active workbook.
REPORT.GET(1)
Related Functions
REPORT.DEFINE Creates a report
REPORT.DELETE Removes a report from the active workbook
REPORT.PRINT Prints a report
Return to index