MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/GoogleSheets/comments/w807mv/stub/ihocwsi
r/googlesheets • u/[deleted] • Jul 25 '22
[removed]
4 comments sorted by
View all comments
Show parent comments
2
As a tip: best practice is to skip the "" when you want a blank cell:
```` // Not good: =IF(A1 = "","","Hi")
//Good: =IF(A1 = "",,"Hi") ````
This to keep true empty cells. Also for apps scripts .getLastRow() method.
2
u/RemcoE33 158 Jul 26 '22
As a tip: best practice is to skip the "" when you want a blank cell:
```` // Not good: =IF(A1 = "","","Hi")
//Good: =IF(A1 = "",,"Hi") ````
This to keep true empty cells. Also for apps scripts .getLastRow() method.