The Reports tab opens a series of pre-formatted reports that are generated by WYSIWYG, containing all data entered in CAD and DATA modes. These reports are available for you to use as is, or to modify to suit your needs. Unlike the spreadsheets in DATA mode, you cannot edit fixture data here. Reports are designed to be printed documents. You can, however, modify their setup and layout.
Notes:
Result: The View Options window appears.
Tip: You can use the View Options tool on the Standard toolbar.
The View
Options button.
Options on the General tab affect the scene that is displayed in the report.
To filter your show information based on the scene selected, clear the checkbox, and then select the desired scene from the Scene drop-down list. Only fixtures on the active layers (or layers in the scene) are displayed in the report.
Tip: You can change the current scene at any time by using either the Scene toolbar or the Scene Database dialog box. For more information on scenes, see Scenes.
Options on the Report tab affect the appearance of the report.
Example 1: Given a Three Cell Cyc light, the Fixtures detail level will only give you one row of data: Three Cell Cyc. If you switch the detail level to Circuits, then you will get three rows of Three Cell Cyc, one for each circuit.
Example 2: Given a Source 4 with a Scroller attachment, a report with the Fixtures detail level will simply display “Source 4”. The same report with the Fixtures and Accessories detail level will display one row for Source 4 and one row for the scroller attachment.
Each row in the Columns table represents a column that can be displayed in the Report. To enable a header, select the checkbox on the row of the relevant data column.
Contains the settings for how the report will be sorted. The keys sort fixtures in alphabetical or numeric order. When fixtures have the same value in the first sort key, the report is then sorted by the values of the second sort key, and so on for the third sort key. For example, the standard Instrument Schedule sorts fixtures by position as Key 1, and unit number as Key 2. When a column is selected as a key, the visible option will be checked and greyed out. Columns that are sort keys must be visible.
Contains settings for the column that you selected from the Columns list. You can use filters to extract specific information from reports. A total of three filters can be applied to any given report. For example, you can create a report that displays all the fixtures that have notes. To do so, select the Notes column and the Visible checkbox, and then select the filter Not Empty. You will also have to make Position, Unit, and Channel visible so that you know which fixtures have these notes.
You can save a Report to the application level, and then you can export or import this Report to and from other files.
Result: The Add Default Report dialog box appears.
Result: The Default Report that you added is included in the list of Reports that can be exported and the list of Report Templates that can be imported from the File menu.
You can customize the fonts, styles, and layouts used in the headings and text of your reports. These settings can be applied to the headings of all reports in your document as desired.
Report headings can be directly modified on the current report. You may add, remove, and change the formatting of cells within the report with a limited degree of freedom. For more information about the functionality of the spreadsheet, see Worksheets.
Once the editing has been completed, you can apply the look and feel of your current report by completing the following steps:
Result: The cells merge and any text will span the merged cell.
Result: The merged cells unmerge.
You can customize the formatting used in the headings of your reports and apply the customized headings to all the reports in your document.
You can save the modified reports with the customized headings by exporting the file as Report Templates. Consequently, you can import the Report Templates into WYSIWYG and apply the customized headings to selected reports in your document.
You can save the current report with customized heading format to a file, as follows:
Result: The Export window appears.
Note: For optimal compatibility with other WYG files, it is recommended that you export to the WYSIWYG Spreadsheet format (*.wss).
You can import and apply the customized report heading format into WYSIWYG as follows:
Result: The Choose which Reports to import into window appears.
Tips:
Result: The Import window appears.
Result: The customized heading format of the imported Report Template is applied to the selected report document(s).
You can change the column widths in the report. A double-headed arrow appears when you float the cursor between the column separations at the top of the report. Double-click the column headings to have the column resize to fit (auto-fit) the contents.
Reports data cells in WYSIWYG can be formated in many different ways to suit your needs. Each column in a report can be individually formated, and every row that appears under that column will have the same formatting e.g. text alignment, font style, font color, font size, font style, background color. Reports can also be edited to have zebra stripes or have borders around columns.
Note: Clicking the first cell of the first column, called the smart cell, will select every cell.
Result: The Format Cells window appears.
Note: Alternatively, you can use the New Plot Text toolbar for editing the cells.
Zebra striping is a feature in reports where ever other data row will be highlighted in a report.
Note: Formatting a cell will override zebra stripping.
From the Reports menu, choose Zebra Striping.
Tip: You can also select the Zebra Striping checkbox in General tab of the View Options window in the Reports tab.
It is possible to display the reports of multiple sheets of a group into a single report. This combined report will fit on a single page.
Result: The View Options window appears.
Result: The multiple pages of the group report will be merged and be displayed on a single page.
Over 100 formulas for common mathematical and logic functions are supported in WYSIWYG (you must manually enter the formula as text in a cell). Examples of formula include the following:
ABS: determines the absolute value of the specified value, cell or expression.
Syntax: ABS(value)
Syntax: ABS(expression)
Example: =ABS(-4) gives output 4
Example: =ABS(B4) alternatively, reference cells within your sheet
AVERAGE: finds the averages of a list of values.
Syntax: AVERAGE(value1, value2,...)
Syntax: AVERAGE(array1, array2, ...)
Example: =AVERAGE(1,2,3,4,5) gives output 3
Example: =AVERAGE(A1:A10) alternatively, reference cells in your sheet
CEILING: rounds a number up to the nearest multiple of the specified value.
Syntax: CEILING (value, rounding multiple)
Example: =CEILING(2.3, 1) rounds to the closest whole number in the negative range, gives output 3
FLOOR: rounds a number down to the nearest multiple of the specified value.
Syntax: FLOOR (value, rounding multiple)
Example: =FLOOR(2.3, 1) rounds to the closest whole number in the positive range, gives output 2
MAX: returns the maximum value from a given list of values.
Syntax: MAX(value1, value2,...)
Syntax: MAX(array1, array2,...)
Example: =MAX(1,2,3,4,5) gives 5
Example: =MAX(A1:A5, B2:B21) allows you to find the maximum value from multiple ranges
MEDIAN: returns the median, or the number in the middle of the provided set of numbers.
Syntax: MEDIAN(value1, value2,...)
Syntax: MEDIAN(array1, array2,...)
Example: =MAX(1,2,3,4,5) gives 3
Example: =MAX(A1:A5, B2:B21) allows you to find the median value from multiple ranges
MIN: returns the minimum value from a given list of values.
Syntax: MIN(value1, value2,...)
Syntax: MIN(array1, array2,...)
Example: =MIN(1,2,3,4,5) gives 1
Example: =MIN(A1:A5, B2:B21) allows you to find the minimum value from multiple ranges
SUM: returns the sum of cells or range of cells.
Syntax: SUM(value1, value2,...)
Syntax: SUM(array1, array2,...)
Example: =SUM(1,2,3,4,5) gives output 15
Example: =SUM(A1:15) allows you to sum over a range of cells