Hi,
I have a sheet with several rows and columns containing text. I would like
to add similar text to all the cells after the existing text. Is there an
easy way to do that?
thanks
----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.
http://www.microsoft.com/office/comm...lic.excel.misc
avi2001, you could use a macro something like this,
Sub AddText()
Application.ScreenUpdating = False
For Each c In Range("A2:C25") 'change to your range
c.Value = c & " your text here"
Next
Application.ScreenUpdating = True
End Sub
--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 2002 & 2003
"avi2001" <avi2001@discussions.microsoft.com> wrote in message
news:D360557A-E16A-45DD-8C23-A8053042C6FC@microsoft.com...
> Hi,
> I have a sheet with several rows and columns containing text. I would like
> to add similar text to all the cells after the existing text. Is there an
> easy way to do that?
>
> thanks
>
> ----------------
> This post is a suggestion for Microsoft, and Microsoft responds to the
> suggestions with the most votes. To vote for this suggestion, click the "I
> Agree" button in the message pane. If you do not see the button, follow
> this
> link to open the suggestion in the Microsoft Web-based Newsreader and then
> click "I Agree" in the message pane.
>
> http://www.microsoft.com/office/comm...lic.excel.misc
try
for each c in selection
c.value=c &" blah blah blah"
next
--
Don Guillett
SalesAid Software
donaldb@281.com
"avi2001" <avi2001@discussions.microsoft.com> wrote in message
news:D360557A-E16A-45DD-8C23-A8053042C6FC@microsoft.com...
> Hi,
> I have a sheet with several rows and columns containing text. I would like
> to add similar text to all the cells after the existing text. Is there an
> easy way to do that?
>
> thanks
>
> ----------------
> This post is a suggestion for Microsoft, and Microsoft responds to the
> suggestions with the most votes. To vote for this suggestion, click the "I
> Agree" button in the message pane. If you do not see the button, follow
this
> link to open the suggestion in the Microsoft Web-based Newsreader and then
> click "I Agree" in the message pane.
>
>
http://www.microsoft.com/office/comm...lic.excel.misc
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks