需要以下问题的Excel公式
创建一个公式,该公式仅返回给定字符串以“ x”之后出现的字符。相同的公式必须适用于整列!
应用公式后的外观示例:
765892x329 329 752238x44 44
Create a formula that returns only the characters that appear after "X" for the given character strings. The same formula must work for the whole column!
Example of how it should look like after you apply your formula:
765892X329 329
752238X44 44
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个有效的方法:
它首先找到x在单元格中的位置,并从一开始就替换了所有文本,从x却没有的位置,换句话说,将其删除,仅在x之后提供文本。
替换两个A1在上面的公式中,您要将公式应用于单元位置。
Here’s one that works:
It first finds where the X is in the cell and replaces all the text from the beginning up to where X is with nothing, in other words removing it, leaving you with just the text after X.
Replace both the A1 in the above formula with the cell position you want to apply the formula to.