Jump to content

Translations:BIM Report/30/en

From FreeCAD Documentation

First, let's create a simple list of all spaces and their areas.

  1. In the Report Statements, click the Add Statement button. A new, empty statement will appear in the list.
  2. With the new statement selected, click the Edit Selected button. The Statement Editor will appear at the bottom of the Task Panel.
  3. In the Description field, type Room List.
  4. In the SQL Query editor, enter the following query. This selects the name and area of all objects that are Spaces and sorts them alphabetically.
    SELECT Label, Area FROM document WHERE IfcType = 'Space' ORDER BY Label ASC
    
  5. Click the Save button in the editor to commit your changes to the statement.