在 Excel 中从字符串中删除字符
我想去掉给定单元格上字符串中的最后一个字符。我试图使用以下公式:
=LEFT(A2, LEN(A2)-1)
这让 Excel 很生气,因为它是单元格 A2 上的循环引用...
我对 Excel 公式很糟糕...非常感谢任何帮助。谢谢。
I want to strip off the last character in a string on a given cell. I was trying to use the following formula:
=LEFT(A2, LEN(A2)-1)
This pisses off Excel as it is a circular reference on cell A2...
I'm terrible with Excel formulas... any help is greatly appreciated. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这对我有用。您确定不更改同一个单元格吗(A2)
It works for me. Are you sure you are not changing the same cell (A2)
您需要将其放在同一列中吗?我不确定你是否可以在没有 VB 的情况下做到这一点。
通常我只是在输入数据的左侧插入一列,然后在 B 列中使用上面的公式。
Do you need it in the same column? I'm not sure you can do that w/o VB.
Normally I just insert a column to the left of the input data, then use your above formula in column B.
对我来说,单元格 B1 = LEFT(A1,LEN(A1)-1),A1 = tada,值 = tad。
你到底在做什么?
Wotks for me, cell B1 = LEFT(A1,LEN(A1)-1), and A1 = tada, value = tad.
What exactly are you doing?