Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a need to combine two columns, which I can do using the features from
PUP 6. What I would like to know how to do before I combine the columns, if any of the cells in one column, (bracket) that information before combining -- Regards Michael Koerner |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Think you left something out of your statement
If any of the cells in one column ? ? ?, Also, What do you mean by bracket? Do you want to indicate missing values by putting brackets in the string "AAA" & "()" If you physically want to put in the brackets Dim rng as Range, rng1 as Range set rng = Intersect(Range("A:B"),Activesheet.UsedRange) On Error Resume Next set rng1 = rng.Specialcells(xlBlanks) On error goto 0 if not rng1 is nothing then rng1.Value = "()" End if -- Regards, Tom Ogilvy "Michael Koerner" wrote in message ... I have a need to combine two columns, which I can do using the features from PUP 6. What I would like to know how to do before I combine the columns, if any of the cells in one column, (bracket) that information before combining -- Regards Michael Koerner |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I automate bracketing of text in an Excel cell? | Excel Discussion (Misc queries) | |||
Combining Text from 2 Columns into 1 then Deleting the 2 Columns | Excel Worksheet Functions | |||
Double quotes bracketing text strings that include commas | Excel Discussion (Misc queries) | |||
combining two text columns into one | Excel Discussion (Misc queries) | |||
How Do I use COUNTIF Combining the Text from 2 Columns | Excel Worksheet Functions |