Is there a term that describes what I'm trying to do below? Also, how would you do this using something like JMP or Excel? (or do I need to code this in something like perl?)
Given this sort of data:
ID| opened | closed | quantity
--------------------------------------
1 | 2010-01-01 | 2010-01-03 | 1
2 | 2010-01-02 | | 2
3 | 2010-01-02 | 2010-10-05 | 3
I'd like to get this data and then graph with x being a time line and Y being total quantity open:
on date | total quantity open
---------------------------------
2010-01-01 | 1
2010-01-02 | 6
2010-01-03 | 5
2010-01-04 | 5
2010-01-05 | 2