简体   繁体   English

Google表格的ArrayFormula

[英]ArrayFormula for the google form

So I have a four(4) columns/fields the in my google sheets that link to a google form, these are, 因此,我在Google表格中有四(4)列/字段链接到Google表单,它们是:

  1. Last_Name
  2. Given_Name 给定的名称
  3. Middle_Name 中间名字

The only fields that the user will fill up are the first three(3) fields. 用户将填写的唯一字段是前三(3)个字段。

on my 4th column, is the Full_Name , now I want to combine the three(3) fields as one(1) using ArrayFormula? 在我的第4列上,是Full_Name ,现在我想使用ArrayFormula将三(3)个字段组合为一个(1)吗?

this is my formula, =ARRAYFORMULA(E2&" "&F2&" "&G2) , every time I save some records, the formula gone on that specific field. 这是我的公式=ARRAYFORMULA(E2&" "&F2&" "&G2) ,每次我保存一些记录时,该公式都会在该特定字段上显示。

This is my spreadsheet, that connected to a form 这是我的电子表格,已连接到表单

尝试

=ARRAYFORMULA(IF(LEN(A2:A), E2:E&" "&F2:F&" "&G2:G,))

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM