如何查找Excel单元格值之间的输入和空格--excel 2007
如何使用 VBA 查找 Excel 单元格值中的 Enter 和空格。例如,如果单元格值包含像“Some value”这样的值,那么如何找到该单元格包含空格。在第二种情况下,如果单元格值包含 Enter,就像在单元格中键入值时,如果有人写“Some”,然后按 Enter 键,然后写“value”,那么如何找到此输入。 我用的是excel 2007 谢谢
How to find enter and space in the excel cell value by uisng VBA. For example if the cell value contain value like "Some value" then How to find that this cell contain space. In second case if the cellvalue contain Enter like while typing values in a cell if someone write "Some" and the press enter and then write "value" then how to find this enter.
I am using excel 2007
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Excel 中,您无法按 Enter 换行,必须按 Alt + Enter。您可以在 Instr 中使用 VBA 常量 vbLf 来查找它。
杰西
You can't hit enter to get a new line in Excel, you have to hit alt + Enter. You can use the VBA constant vbLf in your Instr to find it.
Jesse