Skip to main content
Eptura Knowledge Center

Create a Report

The Insights module can be used to create your own custom reports. You can either create report or you can copy an existing report and then modify it. 

Step 1. Access and Create a Report

  1. Navigate to Insights > Create Reports. The Choose Your Data screen displays.

clipboard_e01fd19bd02d1d8a20df9dbd5cd2acd1a.png

  1. Select the module you want to pull the data.
  2. Select the data.

clipboard_ee92a81e18c7be7aa77535b4bcd4c49e1.png

The Create a Report screen displays.

clipboard_e33062c9a6885437b7e31e76cd1e35b32.png

All the fields associated with the domain are selected automatically, and the Report Editor screen displays.

Step 2. Add Fields as Columns

You can add fields to the report's columns using a variety of methods. 

  1. In the Fields section, click the folder to display the fields.
  2. To add a field you an either:
  • double-click the field name.
  • drag and drop the field to the Columns line.
  • right-click on a field and from the menu click Add as Column option.

The field is added to the Columns line.

clipboard_e6517053a3a0be891ad4baea3930dccf3.png

Create a Report vs Copy a Report

If you create a report then all available fields will display in the Fields section. However, if you copy from an existing report, there may be fields that do not display on the list of available fields in the Fields section. To see all the fields:

  1. Select the Domain's More Action clipboard_e69011298151501e7065712675e00559c.png icon and then click the Select Fields option. The Select Fields dialog displays.
  2. From the Available Fields list, move any fields that you would like to display to the Selected Fields list.

Step 3. Add a Filter

If you want to filter the report's data then you can add filter.

  1. Right-click on the column and the pop-up menu displays.
  2. Click the Create Filter item.

clipboard_e702097652d5e556c94f4d14f95048d3e.png

The Filter displays.

clipboard_ef3b2b1ab9960a5c9fec7e8ebe35faa4a.png

  1. Compete the filter.
  2. Click the Apply button.

The result will be displayed.

Step 4. Optional - Add a Measure

If you want you can add measures to your report and there are default measures in in data set.

From the Measures area, complete the following:

  1. Click the folder to display the measures.
  2. To add a field you an either:
    1. double-click the measure.
    2. drag and drop the measure to the Columns line.
    3. right-click on a measure and from the menu click Add as Column option.

The measure is added to the Columns line.

clipboard_e598d39cc5a270a0396a87449ebacd7fc.png

Step 5. Optional - Create your own Measure

If you need to create your own measure, then this can be added to your report. 

To create a calculated measure, complete the following:

  1. From the Measures area, click the More Actions clipboard_ea0c9467914e19d0ff271c25fe80142b8.png icon.
  2. From the Hover over the Option icon in the Measures section and select the Create Calculated Measure... option.

clipboard_ea2a4f3d0ccde2cab0185006a0234054b.png

The New Calculated Measure dialog displays.

clipboard_e6204fbb1c4f384f7b5d4994bd81d9a68.png

  1. Complete the formula and validate:
  • (A) Measure Name - this is the new measure's name.
  • (B) Formula Builder - this where you can add the fields, measures, functions, and logic to define your formula. There is a formula cheat sheet below, which is designed to help you create measure columns for your report.
  • (C) Validate - when you are ready you can click the Validate button to check if your formula will work. Remember that each function has different criteria for what is considered valid, so complex functions can require both trial and error as well as additional research. Feel free to dive in and experiment as that is the best way to learn!
  1. After you have validated formula, click the Create Measure button. The new measure is available in the Measures section.
  2. To add a field you an either:
    1. double-click the measure.
    2. drag and drop the measure to the Columns line.
    3. right-click on a measure and from the menu click Add as Column option.

The measure is added to the Columns line.

Create Measure - IF Example

In this example, you don't want to display notes on the report, but you want to know whether notes have been entered for mail items on the report.

For this particular measure, use the following formula: 

IF(Contains("Notes", ' '), 'Notes Added', 'No Notes')

To break this down into parts, you are telling the report that IF the "Notes" field Contains '(a space)':

  • read this field value as true and display 'Notes Added' in the column
  • otherwise, read the field value as false and display 'No Notes' in the column

When you are finished entering your formula, click the Validate button to determine whether your formula is valid.

 

clipboard_e516843c72ed3d729f48e80e558d74afc.png

Step 6. Save a Custom Report

When you have finished the report, you will need to save it.

  1. Click the Create button in the upper-right corner of your screen. The Save Report dialog displays.

clipboard_ed7035cc5b8cbc687108cd3f261ada997.png

  1. In the Name field, enter name of your report.
  2. In the Description field, enter information about your report.
  3. If you want your report to be only available to you, check the Private check box.
  4. Click the Save button to save your report. The custom report is saved.
  5. Click the Done button and you report will be generated.

Formula Cheat Sheet


Use the following formulas to help you create the corresponding report type. 

Space Measure Examples

Measure Name

Description

Formula

Area per Occupant

Square footage per user

("Area" / "Occupant Count")

Number of Rooms

Number of rooms

CountDistinct("Room Name", 'Current')

Ratio

Percentage of rooms

PercentOf("Number of Rooms", 'Current')

Area per Room

Square footage per room

("Area" / "Number of Rooms")

Summary by Classification

Building summary by Space Classification

IF(StartsWith("Type", '13'), 'Interior Parking', IF(StartsWith("Type", '14'), 'Vertical Penetration', IF(StartsWith("Type", '15'), 'Void', IF(StartsWith("Type", '21'), 'Core Building Service', IF(StartsWith("Type", '22'), 'Primary Circulation', IF(StartsWith("Type", '32'), 'Expansion',  IF(StartsWith("Type", '33'), 'Secondary Circulation', IF(StartsWith("Type", '41'), 'Business Support', IF(StartsWith("Type", '42'), 'Personnel Service', IF(StartsWith("Type", '43'), 'Training & Collaboration', IF(StartsWith("Type", '44'), 'Public Space', IF(StartsWith("Type", '51'), 'Office', IF(StartsWith("Type", '52'), 'Environmentally Controlled', IF(StartsWith("Type", '53'), 'Medical Practice', IF(StartsWith("Type", '55'), 'Laboratory', IF(StartsWith("Type", '61'), 'Commercial Space', IF(StartsWith("Type", '71'), 'Production', IF(StartsWith("Type", '72'), 'Warehouse',  IF(StartsWith("Type", '81'), 'Residential', IF(StartsWith("Type", '91'), 'Alternative Workplace', IF(StartsWith("Type", '92'), 'Non-enclosed Roof', 'False')))))))))))))))))))))
Vacancy Calculated vacancy
CaseWhen("Available Capacity" - "Occupant Count" <= 0, 0, "Available Capacity") 
Vacancy Percentage Calculated percentage of vacancy
"Vacancy" / "Capacity"

Move Measure Examples

Measure Name

Description 

Formula

New Hires

Display a count of new hire transactions. If necessary, replace the word 'New' with the applicable term.

IF(Contains("Request Type", 'New'), 1, 0)

Terminations

Display a count of terminate transactions. If necessary, replace the word 'Exiting' with the applicable term.

IF(Contains("Request Type", 'Exiting'), -1, 0)

Moves

Displays a count of move transactions. If necessary, replace the word 'Employee' with the applicable term.

IF(Contains("Request Type", 'Employee'), 1, 0)

Service Request Measure Examples

Measure Name

Description 

Formula

Work Started

Use to determine whether an open request as been started.

IF(IsNull("Date Time Started"), 'Overdue - Not Started', 'Overdue - Started')

Overdue

Use to determine if open request is overdue.

IF(ElapsedMinutes("Date Required", Today(0)) >= 0, 'On Time', 'Overdue')

OnTime vs. Late

Use to determine whether a request is on time or late.

IF("Date Completed" < "Date Required", 'On Time', 'Late')

Overdue

Use to determine whether an archived request is overdue.

IF("Date Completed" > "Date Required", 'Overdue', 'On-time')

Required by Time (hrs)

Use to determine whether the duration of the request is required.

ElapsedHours("Date Required", "Date Created")

Time to Complete (hrs)

Use to determine the time required to complete the request.

ElapsedHours("Date Completed", "Date Created")

Percentage

Use to determine the percentage of flagged requests to supplement the counts for Request Number.

PercentOf("Request Number", 'ColumnGroup')

Scheduled Task

Determine whether there is a scheduled task flag to help you differentiate between scheduled tasks and on-demand requests.

IF("Scheduled Task Flag" == 'Yes', 'Scheduled Tasks', 'On-Demand Requests')

Reservation Measure Examples

Measure Name

Description 

Formula

Reservation Count

Total number of reservations

CountAll("Reservation ID")
Average Cancelled Average of cancelled reservations
CountAll(IF("Cancelled" == 'true', "Reservation ID")) / CountAll("Reservation ID")