| << resourcereport << | Table Of Contents | >> resources (limit) >> | 
| Keyword | resourceroot | 
| Purpose | Only resources below the specified root-level resources are exported. The exported resources will have the ID of the root-level resource stripped from their ID, so that the sub-resourcess of the root-level resource become top-level resources in the report file. | |
| Syntax | resourceroot <resource> | |
| Arguments | resource [ID] | The ID of a defined resource | 
| Context | accountreport, resourcereport, taskreport, textreport, tracereport | |
project "Test" "1.0" 2010-11-10 +2m {
  timezone "America/Denver"
}
resource org "Org" {
  resource team1 "Team1" {
    resource r1 "R1"
    resource r2 "R2"
    resource r3 "R3"
  }
  resource r4 "R4"
}
resource r5 "R5"
task "T"
resourcereport "ResourceRoot" {
  formats html
  columns name, id
  # Only list the Team1 as if it would be a top-level resource.
  resourceroot team1
}
| << resourcereport << | Table Of Contents | >> resources (limit) >> |