| << rollupaccount << | Table Of Contents | >> rolluptask >> | 
| Keyword | rollupresource | 
| Purpose | Do not show sub-resources of resources that match the specified logical expression. | |
| Syntax | rollupresource (<operand> [(| | & | > | < | = | >= | <= | !=) <operand>...] | @ (all | none)) | |
| Arguments | operand | An operand can consist of a date, a text string, a function, a property attribute or a numerical value. It can also be the name of a declared flag. Use the  An operand can be a negated operand by prefixing a ~ charater or it can be another logical expression enclosed in braces. | 
| | | The 'or' operator | |
| & | The 'and' operator | |
| > | The 'greater than' operator | |
| < | The 'smaller than' operator | |
| = | The 'equal' operator | |
| >= | The 'greater-or-equal' operator | |
| <= | The 'smaller-or-equal' operator | |
| != | The 'not-equal' operator | |
| Context | accountreport, export, icalreport, resourcereport, tagfile, 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 "RollupResource" {
  formats html
  columns name, id
  # Don't list the Team1 resources.
  rollupresource plan.id = 'team1'
}
| << rollupaccount << | Table Of Contents | >> rolluptask >> |