I know at first this question sound easy.
I want to have a high comma after the third digit. For example: 10'000 or 1'000 and 100 and 10. I am able to do this manually in excel using "Format">"Number"> 0 "decimals". That gives me the right formatting. But now comes the twist! If I record the a macro of that action the code is something like this:
MyChart.Axes(xlValue).TickLabels.NumberFormat = "#'##0" But this yields something else when a applied, namely : 100'000 10'000 1'000 '100 '10
Any suggestions on what format code to use ? I could always go through all ticklables check the value and format it indivdually but that's a pain. If I do not have to I'd rather not do it.

