Hi. Basically I’m wondering if there is a way to have LibreOffice Calc plot data in the following format correctly:
A B
20120101T1600Z 1
20120102T1600Z 2
20120105T1600Z 5
Where 20120101T1600Z is the date first of January 2012, 16:00 UTC. My end goal is a scatter plot with dates on the x-axis, correctly spaced according to the time between data points.
Since you are providing a Custom date format, it is displayed as you request but Calc doesn’t recognize it at input time as a date but as a text string. The solution is to create four columns, for year, month, date and time and then on the fifth use a formula =DATE(A1;B1;C1)+D1
and this on column D =B2 and create your plot from columns C and D