Home > Back-end >  Google form timestamp date
Google form timestamp date

Time:05-31

I am looking to timestamp my invoices via google forms.

enter image description here

I've tried numerous formulas, but they all seem to fall apart during the form submission.

=left(B2:B,(LEN(B2:B)-(FIND(" ",B2:B)-1)))

enter image description here

but it's causing the form to break.

CodePudding user response:

you need arrayformula. delete everything in C column and use this in C1:

={"Invoice date"; ARRAYFORMULA(IF(B2:B="";;TEXT(B2:B; "m/d/e")))}

or freeze it:

={"Invoice date"; ARRAYFORMULA(IF(INDIRECT("B2:B")="";;TEXT(INDIRECT("B2:B"); "m/d/e")))}
  • Related