| << end (report) << | Table Of Contents | >> endcredit >> | 
| Keyword | end (timesheet) | 
| Purpose | The expected end date for the task. This can only be used for duration based task. For effort based task remaining has to be used. | |
| Syntax | end <date> | |
| Arguments | date | See date for details. | 
| Context | newtask, task (timesheet) | |
task t2 "Task 2" {
  task t3 "Task 3" {
    duration 10d
    allocate r2
  }
}
timesheet r2 2009-11-30 +1w {
  task t2.t3 {
    work 5d
    end 2009-12-10
    status red "I need more time" {
      summary "This takes longer than expected"
      details -8<-
        To finish on time, I need help. Get this r1 guy to help me out
        here.
        * I want to have fun too!
      ->8-
    }
  }
  status yellow "My wife got ill" {
    summary "I might have to work from home for a few days next week."
  }
}
| << end (report) << | Table Of Contents | >> endcredit >> |