Given a set of values like this…
2000/01/01, 12
2000/01/15, 11
2000/02/07, 14
2000/02/25, 17
etc
…it is easy to create a scatter chart that produces a line plotting the values against time. I have four sets of values like this I want to appear on the same chart, each line a different colour. The dates for each set interleave each other. For example, the next set might look like this…
2000/01/05, 20
2000/01/09, 18
2000/02/20, 22
etc
Typically when combining series of data, each series shares the same X-axis values. I tried arranging the data such that the first column contained all dates, followed by a column with set 1’s values, then a column with set 2’s, etc. This resulted in an array of cells with a lot of gaps. The resulting chart reflected those gaps.
Can this even be done?