homegrownandy
New Member
- Joined
- Jun 15, 2015
- Messages
- 7
Im trying to convert a list of data into a block of text which I will then paste into a word document.
This formula will work, but I end up copying loads of blank cells/rows:
Ive tried using this which fails when it hits a blank row:
Any idea how i can just copy the cells into a block of text without the blank cells?
This formula will work, but I end up copying loads of blank cells/rows:
Code:
=C2 & CHAR(10) & CHAR(10) & C3 & CHAR(10) & CHAR(10) ... ect
Ive tried using this which fails when it hits a blank row:
Code:
=IF(ISBLANK(C2)=FALSE,C2 & CHAR(10) & CHAR(10),””) & IF(ISBLANK(C3)=FALSE,C3 & CHAR(10) & CHAR(10),””) & IF(ISBLANK(C4)=FALSE,C4 & CHAR(10) & CHAR(10),””)
Any idea how i can just copy the cells into a block of text without the blank cells?
Last edited: