Like everyone else, to get the real time difference between your points, you need to use a scatter plot instead of an Excel row plot.
In order to display the true state of your balance between dates (that is, without oblique lines), you will need to do some conversion of your data. This means creating two new data columns with duplicate points for each balance: one on the date when the account balance reached this level, and one on the balance date left this level.
I suggest the following: To fill in the โBalanceโ column, in the first cell (I start my table in E2), enter
=B2
where B2
is the address of the first balance in the source table. In the next cell, enter
=IF(E2<>E1,E2,OFFSET(B$2,COUNT(E$2:E2)/2,0))
Fill out this formula as much as you need.
Then in the first cell of the Date column of your new table (I start with D2) type
=A2
where A2
is the first date in your source table. In the next cell, enter
=IF(E3=E2,OFFSET(A$2,COUNT(E$2:E3)/2,0),D2)
Fill out this formula. Then use this new table as input for the scatter plot. Here's a sample screen capture:

source share