Forum Discussion
Auski
3 years agoAdvocate I
Stacked Bar Chart with Duration
Hi all, I am looking at creating a stacked bar graph in PBI for each agent using duration (similar to the excel screenshot below). However when I do add duration to the x-axis, count is my only d...
- 3 years ago
Auski , Have time in second. Use new dynamic string format and give this format and use
""""& QUOTIENT([net],3600) &":" & QUOTIENT(Mod([net],3600),60) &":" & round(MOD(Mod([net],3600),60),0) &""""Here net is measure in second I converted for format time
amitchandak
3 years agoSuper User
Auski , Have time in second. Use new dynamic string format and give this format and use
""""& QUOTIENT([net],3600) &":" & QUOTIENT(Mod([net],3600),60) &":" & round(MOD(Mod([net],3600),60),0) &""""
Here net is measure in second I converted for format time