Reputation: 36277
I'm trying to follow https://support.google.com/docs/answer/6208276 to put a column header in U3 with a formula in the cell below it. I have:
=ArrayFormula({'HI'; if(Today()-V4:V=today(),"no",Today()-V4:V);})
But I'm getting a 'Formula Parse error' . How can I fix this.
Upvotes: 1
Views: 160
Reputation: 59475
Try:
=ArrayFormula({"HI";if(Today()-V4:V=today(),"no",Today()-V4:V)})
Upvotes: 1