Exponential number in custom number format of Exce

2019-07-25 08:55发布

问题:

In an Excel chart, I have some values on the x-axis: 1, 2, 3, 4, 5 But these values are actually in logarithm. Therefore, I need to show the exponential numbers as the labels of x-axis like: 10, 100, 1000, 10000, and 100000.

I tried the 'Format Axis' --> 'Number' --> 'Custom' in order to add a new format code to support that. But it didn't work.

The best thing I've got so far is

10^#,##0;10^#,##0

But it just gives me exactly 10^x which is not what I need.

Any idea?