2

How would I adjust this formula to not expand to infinity, but only expand if the adjacent row contains a value?

=ARRAYFORMULA({"Invoice Date"; INT(B2:B)})

thanks!

player0
  • 124,011
  • 12
  • 67
  • 124
cpaone
  • 145
  • 9

1 Answers1

1

like this:

=ARRAYFORMULA({"Invoice Date"; IF(A2:A="";;INT(B2:B))})
player0
  • 124,011
  • 12
  • 67
  • 124