10 位数字长度的位置填充符和符号使用需要 MS Excel 自定义代码
如果字段中的数字不是十位数字,我想通过添加“~”来统一列。例如:123456789~、2343456~~~、543645~~~~。 有谁知道如何编写这个自定义代码?
I would like to make a column uniformed by adding a "~" if the number in the field is not ten digits. For example: 123456789~, 2343456~~~, and 543645~~~~.
Does anyone know how to write this custom code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您可以适当地设置列宽,则单元格的自定义格式(例如“0*~”)通常会起作用。更多信息请参见此处“重复字符'
另外,一点 VBA 也可以完成这项工作。
A custom format for the cells like "0*~" would mostly work provided that you could set the column width appropriately. More information here under the section 'Repeating Characters'
Alternatively, a bit of VBA would do the job.