Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Adding double quotes around entries in a column

I need to add double quotes at the beginning and end of all entries in a very
long column. How can I do this without typing manually?
--
NC designer
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,276
Default Adding double quotes around entries in a column

Hi,
Let's say the column is A, in B enter this formula
=""" &A1& """
if this was helpful click yes

"NCdesigner" wrote:

I need to add double quotes at the beginning and end of all entries in a very
long column. How can I do this without typing manually?
--
NC designer

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 896
Default Adding double quotes around entries in a column

=CHAR(34)&A1&CHAR(34)

then copy and paste as values


On 12 Gru, 14:29, NCdesigner
wrote:
I need to add double quotes at the beginning and end of all entries in a very
long column. How can I do this without typing manually?
--
NC designer


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 896
Default Adding double quotes around entries in a column

or

=""""&A1&""""

each " 4 times


On 12 Gru, 14:29, NCdesigner
wrote:
I need to add double quotes at the beginning and end of all entries in a very
long column. How can I do this without typing manually?
--
NC designer


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4,393
Default Adding double quotes around entries in a column

In next column, use formula =""""&A1&"""" and copy it down the column by
double clicking the fill handle (small sold square in lower right corner of
active cell)

If you wish you could select and copy all of the results; then with the
range still selected use Edit | Paste Special with Values specified. This
converts formulas to values and allows you to delete the original data
best wishes
--
Bernard V Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme
remove caps from email

"NCdesigner" wrote in message
...
I need to add double quotes at the beginning and end of all entries in a
very
long column. How can I do this without typing manually?
--
NC designer





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default Adding double quotes around entries in a column

You might want to test that, Eduardo?
--
David Biddulph

"Eduardo" wrote in message
...
Hi,
Let's say the column is A, in B enter this formula
=""" &A1& """
if this was helpful click yes

"NCdesigner" wrote:

I need to add double quotes at the beginning and end of all entries in a
very
long column. How can I do this without typing manually?
--
NC designer



  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Adding double quotes around entries in a column

If you want minimal typing and no formulas to clean up....................

Sub Add_Text_Left_Right()
Dim Cell As Range
Dim moretext As String
Dim thisrng As Range
On Error GoTo endit
Set thisrng = Range(ActiveCell.Address & "," & Selection.Address) _
.SpecialCells(xlCellTypeConstants, xlTextValues)
moretext = InputBox("Enter your Text")
For Each Cell In thisrng
Cell.Value = moretext & Cell.Value & moretext
Next
Exit Sub
endit:
MsgBox "only formulas or numbers in range"
End Sub

Select the column.....................Enter " in the Inputbox.


Gord Dibben MS Excel MVP


On Fri, 12 Dec 2008 05:29:00 -0800, NCdesigner
wrote:

I need to add double quotes at the beginning and end of all entries in a very
long column. How can I do this without typing manually?


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Adding suffix to column entries NCdesigner Excel Worksheet Functions 5 October 13th 08 03:49 PM
Double Quotes [email protected] New Users to Excel 2 July 20th 08 12:43 PM
Double Quotes PeterM Excel Discussion (Misc queries) 5 June 17th 08 05:12 PM
How do I enclose all data values in a column in double quotes? ms.kitty Excel Worksheet Functions 2 March 20th 08 08:08 PM
Concatenate function adding double quotes to both ends of results SqtYork Excel Worksheet Functions 0 September 4th 07 06:22 PM


All times are GMT +1. The time now is 01:19 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"