Hi, All.
I did a search and could not find an answer to my question. I apologize if this has been covered somewhere else. I'm trying to create a task report by that uses the "daysLate" as the grouping criteria similar to the report created by this code that groups by project percentage:
group.0.linkedname=direct group.0.name=Percent Breakdown group.0.notime=false group.0.valueexpression=IF({percentComplete}=0,"0 %",IF({percentComplete}<=10,"0-10 %",IF({percentComplete}<=20,"10-20 %",IF({percentComplete}<=30,"20-30 %",IF({percentComplete}<=40,"30-40 %",IF({percentComplete}<=50,"40-50 %",IF({percentComplete}<=60,"50-60 %",IF({percentComplete}<=70,"60-70 %",IF({percentComplete}<=80,"70-80 %",IF({percentComplete}<=90,"80-90 %",IF({percentComplete}<=100,"90-100 %","100 %"))))))))))) group.0.valueformat=string
and amended the code to use "daysLate" instead of "percentComplete" as follows:
group.0.linkedname=direct group.0.name=Days Late Breakdown group.0.notime=false group.0.valueexpression=IF({daysLate}=0,"0 %",IF({daysLate}<=10,"0-10 %",IF({daysLate}<=20,"10-20 %",IF({daysLate}<=30,"20-30 %",IF({daysLate}<=40,"30-40 %",IF({daysLate}<=50,"40-50 %",IF({daysLate}<=60,"50-60 %",IF({daysLate}<=70,"60-70 %",IF({daysLate}<=80,"70-80 %",IF({daysLate}<=90,"80-90 %",IF({daysLate}<=100,"90-100 %","100 %"))))))))))) group.0.valueformat=string However this results in a report that is not grouped as it should.
Any input or suggestions you may have are very much appreciated.
Thanks