I am using Excel 2016 in Spanish.
I've created with VBA a simple xlLine Chart with dates in X axis and decimal values in Y-axis. The format of the SourceData range is set to dd-mm-yy by VBA code (myRange.NumberFormat = "dd-mm-yy").
When I move my mouse over a single point in the chart, a popup window appears with this content:
Serie "serie1" Punto "30-11-yy". Valor: 245
As you can see it is not showing correctly the year. Instead it shows a "yy". Perhaps it is because in Spanish the year format is "aa". But my source data was correctly formatted with VBA as dd-mm-yy.
Anybody can figure out how can I correct this inconsistency? I was trying also different setups with language preferences, but the result did not change, because the year always appear as "yy".
I've created with VBA a simple xlLine Chart with dates in X axis and decimal values in Y-axis. The format of the SourceData range is set to dd-mm-yy by VBA code (myRange.NumberFormat = "dd-mm-yy").
When I move my mouse over a single point in the chart, a popup window appears with this content:
Serie "serie1" Punto "30-11-yy". Valor: 245
As you can see it is not showing correctly the year. Instead it shows a "yy". Perhaps it is because in Spanish the year format is "aa". But my source data was correctly formatted with VBA as dd-mm-yy.
Anybody can figure out how can I correct this inconsistency? I was trying also different setups with language preferences, but the result did not change, because the year always appear as "yy".