Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.7k views
in Technique[技术] by (71.8m points)

Google Sheets: copying a formula to all cells in a column

When I add formulas to a google sheet they work fine, but when I add a new row the formulas are not copied. to overcome this I found the formula arrayformula. This is good for simple applications such as in cell D4 the following formula is added

=ARRAYFORMULA(if(isblank(B4:B), ,B4:B*C4:C))

Short array

However, when the formula is made a little more complicated it breaks down.

=ARRAYFORMULA(if(and(isblank(B4:B),isblank(C4:C)), ,B4:B*C4:C))

Broken formula

This is still a very simple formula that seems to break, whereas the formulas in my sheet are often much more tricky such as

=if(Y5="","",filter('World Clock'!B:B,'World Clock'!A:A=Y5))

Which reads the data of the cell Y5 (which is the name of a timezone which i enter manually) and looks up another sheet named "World clock" which has a list of timezones and formulas for the current time in those timezones and copies that formula to this sheet.

copied time

World Clock

Does anyone know any formula to get this working? I know there is a way to do it via scripts and I'm sure I can figure that out myself, but if I can get the array formula or something similar working that would be much better as I already have a lot of scripts running in this file, it's starting to become slow.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

AND() and OR() doesn't work with ARRAYFORMULA() since it performs AND()/OR() method in the whole array.

If you want to do AND/OR per array. Use * = AND() or + = OR() instead.

Example:

AND: =ARRAYFORMULA(if(isblank(B4:B)*isblank(C4:C),,B4:B*C4:C))

OR: =ARRAYFORMULA(if(isblank(B4:B)+isblank(C4:C),,B4:B*C4:C))


Output:

enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...