• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

How to automatically put space after each line

If it is just a counter column that is needed
Code:
= LET(
     k, SEQUENCE(2*n - 1, , 0),
     IF(ISEVEN(k), 1 + k/2, "")
  )
or to distribute a list
Code:
= REDUCE("Header", list,
    LAMBDA(stack, item,
      VSTACK(stack, "", item)
    )
  )
Either way, do not attempt to insert data within the blank cells.
 
Back
Top