我有几千行数据,在“A”列中显示项目编号。项目编号的长度可以是 2 到 12 个字符。我需要一种简单的方法在任何项目编号的末尾添加空格,以便每个单元格总共有 4 个字符。有办法吗?例如,我有项目编号 3B 或 4CWF。我需要在 # 3B 中添加 2 个空格,在 4CWF 中添加 0 个空格。
感谢您的帮助。我试过了,但得到了像 #value 这样的错误!代码是=A1&REPT(" ",4-LEN(A1))
|Cell A | Cell B
|-------------------|------------------------------------------|
|blue fractals |blue fractals(need 2 spaces at end |
|-------------------|------------------------------------------|
|Red Pink Blue Cube |Cube Pink Blue Red(no space needed |
|-------------------|------------------------------------------|
|start text end |text start end (one Space needed at end ) |
|--------------------------------------------------------------|
|words more then 4 |No space Needed at end of words |
|--------------------------------------------------------------|