问题标签 [google-sheets]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
5 回答
135537 浏览

google-apps-script - 当单元格更改文本时更改行颜色的脚本

我有一个 Google 电子表格,其中保存了错误列表,每当我修复错误时,我都会将状态从“未开始”更改为“完成”。我想为 Google Docs 电子表格编写一个脚本,这样每当我将状态更改为“完成”时,整行都会以某种颜色突出显示。

我已经知道 Google 电子表格已经具有“更改文本颜色”的功能,但该功能仅更改单元格的颜色,而不会更改整行的颜色。

0 投票
1 回答
3168 浏览

c# - 如何在谷歌电子表格中间插入一行

我试图在谷歌工作表的中间插入一行,但是在 api 文档中找不到方法,

我无法在底部添加新行,因为使用电子表格数据(不是我自己编写)的程序只会忽略添加到底部的新行。

有人有任何想法吗?

0 投票
2 回答
5046 浏览

c# - Copy a Google Docs Spreadsheet using Google .NET API

I'm wanting to copy an already existing Google Docs Spreadsheet to a new Google Docs spreadsheet. I dont think the v2.0 .NET API can handle it natively (or if so I can't find the class/method), however It looks like the v3.0 protocol can but I'm not sure how to implement this in the current framework or even if it is possible with the current .net api. eg. ~DocumentsFeed.copy() (pseudo code).

Exporting to a temp excel file then uploading with a new name is not possible either as some of the complex formulas get messed up in the conversion process.

I am a bit of a .NET noob so any info would be greatly appreciated eg. How would I go about doing this in .NET if I could only use the v3 protocol (ajax etc) and not the .NET API.

Thanks

EDIT: (final class thanks to @langsamu for his help!)

0 投票
2 回答
7971 浏览

android - 如何为 Android 应用从 Google 电子表格中读取数据

我有一个公开的谷歌电子表格,表格中有一些数据。

我正在开发一个 Android 应用程序,我希望它读取这些表格,然后使用电子表格上的字段创建一个列表视图。

哪种方法是最好的方法?

0 投票
2 回答
871 浏览

php - 在 Zend GData 中获取 AuthSub 当前用户

我正在使用 Zend Gdata 将用户连接到一个共享的 Google Docs 电子表格,该电子表格用作自定义界面的后端。

我需要跟踪哪个用户最近更改了特定列中的值。我不知道使用 Google 电子表格执行此操作的方法(但这将是我的问题的可接受答案)。

有没有办法通过 AuthSub 获取当前通过 AuthSub 登录的用户的用户名/电子邮件地址,无论是使用从 Google 返回的令牌还是通过其他方法?

0 投票
1 回答
2072 浏览

regex - Regex query with Google spreadsheet scripts

I'm trying to finish off a Google Apps Script to reformat a field that I would ideally like to turn into a hyperlink.

This is the common format of the text in the spreadsheet:

tistaff: other sections: person: randomname

This is how I would like it to appear:

I've done most of the work except the end bit, which I just can't work out. Can anyone help.

Here's my script:

It works to a point, but this is the output:

What am I doing wrong?

0 投票
1 回答
2734 浏览

ruby - 通过 Ruby 实现的 Google 电子表格 API

我在这里编写了一个脚本来使用 Ruby 按名称访问 Google 电子表格:http:
//gist.github.com/606488

我正在尝试gdata按照这里的说明使用:
http ://code.google.com/apis/gdata/articles/gdata_on_rails.html

为什么我在使用gdatagem 时会收到 401 错误“令牌无效”?

当我使用这里描述的方法时它工作正常:
http ://code.google.com/apis/spreadsheets/articles/using_ruby.html ,
但我想我应该去以前的文档,因为它更新更简单

谢谢!

马特

0 投票
1 回答
738 浏览

python - Appengine - 上传到 Google 电子表格数据存储区值

我想知道如何将存储在我的应用程序数据库中的值上传到 Google 电子表格。

目标:
连接到 Google 电子表格并使用上传传递的值自动填写管理区域中的图表。

我一直在查看文档,在我看来我必须使用 Bulk Loader。这是唯一的方法吗?如果是,如果我有一个电子表格作为链接文本的链接,如何配置处理程序

有人可以编写脚本来访问 Google 电子表格并传递模型的值吗?

模型:

0 投票
2 回答
1800 浏览

google-sheets - 谷歌电子表格作为网络应用程序的数据库

有谁知道我是否可以使用 Google 电子表格来存储我的自定义 HTML 表单的结果?

我知道 Google 电子表格允许在 Google 域本身上创建表单,但是否可以将 Google 电子表格用作其他 webapps 的数据库?

0 投票
1 回答
1169 浏览

embed - 嵌入私人 Google 电子表格

我正在尝试找出在网站的成员部分显示 Google 电子表格的最佳方式。

虽然电子表格中的信息不是非常敏感,但我并不热衷于发布它并使用 iFrame 嵌入它,所以我试图找到一种方法来嵌入电子表格,同时仍然保持它的私密性。

我尝试使用电子表格 API(通过 PHP Zend 库)取得了一些成功,但如果很多单元格为空,它似乎会崩溃。由于我还希望保留任何单元格样式,有没有人知道通过 iFrame 或类似工具嵌入电子表格而不发布它的方法?

欢迎任何 PHP/Javascript 解决方案!