Renato Pontefice
unread,Oct 7, 2024, 1:53:05 PM10/7/24Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to taskjugg...@googlegroups.com
With this very simple .tjp file I obtain an overview report with the day signed by week (7, 14, 21, 28)
Would a report for single day (1 2 3 4….)
Is it possible?
How can I obtain that?
Thank you
Renato
project myProject "My Project" "1.0" 2024-10-01 - 2025-03-31 {
}
#-----
resource persona1 "Persona1" {}
resource persona2 "Persona2" {}
#-----------
task task1 "task1" {
effort 3d
start 2024-10-15
allocate persona1
allocate persona2
#-- precedes !deadline1
#-- depends !task2
}
#--task deadline1 "deadline 1" {
#-- start 2024-10-01
#-- allocate persona1
#-- effort 1w
#--}
task task2 "task2" {
depends !task1
#- start 2024-10-15
effort 1w
allocate persona1
#- precedes !deadline2
}
task deadline2 "deadline 2" {
start 2024-12-02
}
#-------------------------
textreport frame "" {
textreport index "Overview" {
formats html
center '<[report id="overview"]>'
}
}
#-------------------------
taskreport overview "" {
columns bsi { title 'WBS' },
name, start, end, effort, cost,
revenue, chart #-{ ${TaskTip} }
}