| << end (limit) << | Table Of Contents | >> end (timesheet) >> | 
| Keyword | end (report) | 
| Purpose | Specifies the end date of the report. In task reports only tasks that start before this end date are listed. | |
| Syntax | end <date> | |
| Arguments | date | See date for details. | 
| Context | accountreport, export, icalreport, nikureport, resourcereport, statussheetreport, taskreport, textreport, timesheetreport, tracereport | |
project export  "Project" "1.0" 2007-01-01 - 2008-01-01 {
  timezone "America/Denver"
}
resource tux "Tux"
resource bob "Bob"
task t1 "Task 1" {
  start 2007-01-01
  effort 20d
  allocate tux
  allocate bob
  limits { dailymax 6h }
}
# Export the project as fully scheduled project.
export "FullProject" {
  definitions *
  taskattributes *
  hideresource 0
}
# Export only bookings for 1st week as resource supplements
export "Week1Bookings" {
  definitions -
  start 2007-01-01
  end 2007-01-08
  taskattributes booking
  hideresource 0
}
# Export the scheduled project as Microsoft Project XML format.
export "MS-Project" {
  formats mspxml
  loadunit quarters
}
| << end (limit) << | Table Of Contents | >> end (timesheet) >> |