complete <percent>

complete <percent>
Description

Specifies what percentage of the task is already completed. This can be useful for project tracking. Reports with calendar elements may show the completed part of the task in a different color. The completion percentage has no impact on the scheduler. It's meant for documentation purposes only.

Tasks may not have subtasks if this attribute is used.

AttributesNameTypeDescription
percentINTEGER

The value must be between 0 and 100.

Contexttask,
InheritableNoScenario Spec.Yes
See alsobooking

project simple "Some task" "1.0" 2005-06-06 - 2005-06-26 {
  now 2005-06-15
}

resource tux "Tux"

task t "Task" { 
  start 2005-06-06
  effort 10d
  allocate tux
  # This task should have be be completed much more on Jun 15, but
  # it's only 20% done.
  complete 20
}