English 中文(简体)
第2行用于填充整个行的数列函数是用同一个单元格来为几个公式填充它。 如何解决这个问题?
原标题:Array function at row2 to fill in the entire row is populating it in the same cell for few formulas. How to resolve this issue?

我正在创建一个函数, 从工作表中生成并更新的线索中过滤值。 公式用于 A, E & amp; G 中, 使用其他已有的列中的值。 它正在为简单的公式工作, 只有一列可以引用, 例如 : =ARRAYFORMULA( IF ( ISBLANK (B2: B), “ “ TRUE ” ) )

不幸地为涉及更多栏目引用的公式制造问题,例如:

For implementing the following as an array function in A2: =IF(ISBLANK(B2),"",(if((C2=""), CONCATENATE(B2," Interest ",D2," ",G2),CONCATENATE(B2," Interest"," from ",C2," ",D2," ",G2))))

I tried to use this: =ARRAYFORMULA(IF(ISBLANK(B2:B),"",(if((C2:C=""), CONCATENATE(B2:B," Interest ",D2:D," ",G2:G),CONCATENATE(B2:B," Interest"," from ",C2:C," ",D2:D," ",G2:G)))))

它正在所有行中充斥所有值!

我知道我想做的事有问题

我在这里创建了一个样本文件 - < a href="https://docs.google.com/spreteshes/d/1BAwKX00VPV_GuyYI-JT3vqS-7xB8YTfaCY6-c1XQ/edit?usp=share" rel="nofoln noreferrer" >Isssue参考页 ,它有两个标签,一个带有工作功能,另一个带有阵列格式错误,我正试图用你的帮助加以解决。

十分感谢各方支持解决同样的问题。

提前感谢您!

问题回答

使用 代替 CoONCATENATE :

=ARRAYFORMULA(
   IF(B2:B="",,
    IF(C2:C="",B2:B&" Interest "&D2:D&" "&G2:G,
      B2:B&" Interest from "&C2:C&" "&D2:D&" "&G2:G)))




相关问题
How to use year counter google app script?

I need an urgent help i have data as follows in a google sheet i need to add a year counter to the column d as follows using google apps script

Google Spreadsheet multiple column filter using OR

I have a Google Spreadsheet with 3 columns that are either blank or have a value. I want to get the count of the number of rows that has A and either B or C populated. If I were writing a SQL query ...

Run Google Apps Script on Google-Spreadsheet event?

If I create a Google apps script, can I hook it up to Google spreadsheet to run based on an event, or must I manually invoke it? I don t know if Google Sheets supports any events. For example: a ...

How do I insert a row in to a Google spreadsheet using c#

I ve seen; Accessing Google Spreadsheets with C# using Google Data API and http://code.google.com/apis/spreadsheets/data/2.0/developers_guide_dotnet.html#CreatingRows However i m still having ...

using Zend_Gdata_Spreadsheets for public spreadsheets?

I have this code which is working, to load a Google Spreadsheet and load some data from it. If the spreadsheet in question is public, how do i modify the code to not require a username/password? $key=...

Programatically updating a Google spreadsheet

I ve got a pre-existing Google spreadsheet. Each month I update this document. I ve got a template workseet in the spreadseet that I d like to clone and then update. I d prefer to clone the ...

热门标签