I have added it to my personal OneDrive from this link: https://1drv.ms/u/s!AgTCHHd63TVigg_ZhUsEiOes-wpR?e=LSoMcJ
Hi Donna,
the issue is that most of your numbers are not numbers but text. Select column C:D and remove the alignment:
Anything that is aligned left is a text. The minus "-" is a "–", replace it manually or execute this macro once to convert the text to numbers.
Sub Test()
Dim R As Range
Dim V
For Each R In Range("C2:D93")
V = R.Value
If Not IsNumeric(V) Then
V = Val(Replace(V, ChrW(8211), "-"))
End If
R.Value = CDbl(V)
Next
End Sub
Delete the chart, select column A,C:D and create a new chart, now you can see all elements and bars.
The horizontal axis labels shows only every 2nd element because the interval is set to automatic, format the axis and set the label interval to 1.
Andreas.