This is what I need if the value is less then 9 with a trailing zero if there no letter. If there is a letter then have it at the end.
如果没有字母,如果值小于9,则为零,如果没有字母则为零。如果有一封信,那么最后会有。
1 = 010
1B = 01B
This is what I need if the value is less then 9 with a trailing zero if there no letter. If there is a letter then have it at the end.
如果没有字母,如果值小于9,则为零,如果没有字母则为零。如果有一封信,那么最后会有。
15 = 150
15B = 15B
This is what I have so far.
这就是我到目前为止所拥有的。
=IF(E7>9, E7&REPT("0",3-LEN(E7)), TEXT(E7,"000") )
This is my result so far.
到目前为止,这是我的结果。
001
1B0
150
15B