Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

How to insert the ISBLANK into an already valid formula in Google Sheets?

I am trying to add or modify the current formula in Google sheets:

=ARRAYFORMULA(IF(’14_Day_Drop’!B2:B=FALSE, "YES", "NO"))

the formula above works exactly the way I want it, BUT…. I would like to add that if the cells are blank in the array to leave them blank this where this formula is located at. Right now it has YES all the way down the whole row…. I would like to eliminate that so it would be cleaner.

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

Any help would be appreciated.

I have already tried this:

=ARRAYFORMULA(IF(ISBLANK(’14_Day_Drop’!B2:B=FALSE, "YES", "NO"), ""))

I get an ERROR: Wrong # of arguments to ISBLANK. Expected 1 arguments but got 3 arguments.

>Solution :

You may try:

=ARRAYFORMULA(IF('14_Day_Drop'!B2:B="",,
              IF('14_Day_Drop'!B2:B=FALSE, "YES", "NO")))
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading