anyone created an project reports with the percent...
# projects
m
anyone created an project reports with the percentage of work completed shown? I can't seem to get this on my report
j
we do this in searches using a formula to show a progress bar with percent (i can post that if it's helpful), not sure about reports though.
m
Oh, mind if you share?
j
Copy code
'<style>.progress{overflow:hidden;height:18px;background-color:#ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0;height:100%;font-size:11px;line-height:18px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;transition:width .6s ease}</style><div class="progress">' || '<div class="progress-bar" style="width:' || CASE WHEN ROUND({percenttimecomplete}*100, 1) >= 100.0 THEN 100 ELSE ROUND({percenttimecomplete}*100, 1) END || '%;">  ' || ROUND({percenttimecomplete}*100, 1) || '%</div></div>'