需要以下问题的Excel公式

发布于 2025-01-22 04:44:29 字数 106 浏览 0 评论 0原文

创建一个公式,该公式仅返回给定字符串以“ 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

分分钟 2025-01-29 04:44:29

这是一个有效的方法:

=REPLACE(A1, 1, SEARCH("X", A1), "")

它首先找到x在单元格中的位置,并从一开始就替换了所有文本,从x却没有的位置,换句话说,将其删除,仅在x之后提供文本。

替换两个A1在上面的公式中,您要将公式应用于单元位置。

Here’s one that works:

=REPLACE(A1, 1, SEARCH("X", A1), "")

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文