Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If you want these values de-limited in some way then blank cells become a
factor. Otherwise, as others have pointed out, it doesn't matter. Maybe this UDF is what you want? Function ConCatRange22(CellBlock As Range, Optional Delim As String = "") _ As String 'entered as =concatrange22(a1:a10,"|") desired delimiter between quotes Dim Cell As Range Dim sbuf As String For Each Cell In CellBlock.Cells If Cell.text < "" Then sbuf = sbuf & Cell.text & Delim End If Next Cell ConCatRange22 = Left(sbuf, Len(sbuf) - Len(Delim)) End Function Gord Dibben MS Excel MVP On Tue, 16 Jun 2009 12:20:01 -0700, Nigel wrote: Is it possible to concate acroos a rage ignoring any blank values in cells, for example I wold like to concate A1 to A6 but if there is no value in A4 ignore that cell Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Concate a range ignoreing blank cells | Excel Programming | |||
Maximum Number of Blank Cells between Non Blank Cells in a Range | Excel Worksheet Functions | |||
Determine if range has NO Blank Cells without looping through each cell in range | Excel Programming | |||
How do I skip blank cells when copying over a range of cells? | Excel Discussion (Misc queries) | |||
How do I get zeros to stay in front of a # when using the concate. | Excel Worksheet Functions |