如何使用此 Google Apps 脚本?
http://code.google.com/googleapps/appsscript/class_range.html#getFormula
有我可以安装的脚本还是我需要编写自己的脚本?在那之后?
http://code.google.com/googleapps/appsscript/class_range.html#getFormula
Is there a script I can install or do I need to write my own? After that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,如果您想使用它,您需要编写一个调用该方法的 google-apps-script 。
在电子表格中,转到“工具”->“脚本”->“脚本编辑器”,然后在其中编写代码。
当然,
getFormula
方法只是返回给定单元格中公式的字符串表示形式。只需将光标移至该单元格即可完成某些操作。所以你不需要为此编写脚本。Yes, you need to write a google-apps-script that calls that method, is you want to use it.
In your spreadsheet go to Tools->Scripts->Scripts Editor and write your code there.
Of course, the
getFormula
method simply returns a String representation of the formula in the given cell. Something you can do by just moving the cursor over to that cell. So you don't need to write a script for that.