在 Excel 2007 中将字符串计算为单元格中的公式
我没有运气找到可在 Excel 单元格中使用的 eval 类型函数。
假设我有一个包含字符串“C4”的单元格 A1。我希望能够编写类似于此 IF(EVAL(A1)>10,"TOO BIG","TOO SMALL")
的单元格内函数。那么对于该表达式来说,这实际上是C4>10。
没有VBA可以实现吗?
I haven't had any luck finding an eval-type function to use in a cell for Excel.
Let's say I have a cell A1 that contains string "C4". I'd like to be able to write an in-cell function similar to this IF(EVAL(A1)>10,"TOO BIG","TOO SMALL")
. That would then effectively be C4>10 for the expression.
Is this possible without VBA?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我正确理解问题,解决方案将是:
If I understand correctly the problem the solution would be: