Translations:BIM Report/30/en
Appearance
First, let's create a simple list of all spaces and their areas.
- In the Report Statements, click the
Add Statement button. A new, empty statement will appear in the list.
- With the new statement selected, click the
Edit Selected button. The Statement Editor will appear at the bottom of the Task Panel.
- In the Description field, type
Room List. - 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
- Click the
Save button in the editor to commit your changes to the statement.