I work as a software engineer and I need to keep up and report average response time and standard deviations for some of our calls. Getting the data is not a problem, but the tool we use to get it groups calls times by volume. I need some help figuring out a way to do the follow:

Activity Volume Value
retrieve_customer 34 3.45
issue_pass 321 6.7
retrieve_customer 2 8.1
issue_pass 54 4.5
issue_pass 73 6.1

What I need to do is, break the volume apart. Instead of one row w/ volume 321 and time of 6.7 I need 321 rows w/ volume of 1 and value of 6.7. I need them all broken out that way and I don't or can't figure out any way to make that happen. Any suggestions?

Thanks