【发布时间】:2014-07-10 18:34:12
【问题描述】:
我有一个关于使用 google-spreadhseet 生成二维码的简单问题。 我正在使用谷歌的 API 调用
=image("https://chart.googleapis.com/chart?chs=150x150&cht=qr&chl="&A3)
这很好用。
其中A3 是一个人的名字。
我的姓氏是A4,但是当我尝试时:
=image("https://chart.googleapis.com/chart?chs=150x150&cht=qr&chl="&(A3+A4))
或
=image("https://chart.googleapis.com/chart?chs=150x150&cht=qr&chl="&
(CONCATENATE(A3, " ", A4)))
二维码框是空白的。
如何在不创建另一个字段的情况下从名字和姓氏生成二维码。
【问题讨论】:
-
感谢编辑
标签: google-sheets google-api qr-code urlencode