PC Review


Reply
Thread Tools Rate Thread

Inserting a word

 
 
Daniel
Guest
Posts: n/a
 
      5th May 2005
Hi

I have a row of cells, each with a different word, being part of a
description.
I need to insert a word, the same word, in front of the words in each cell?
please let me know how to do that, if it can be done.

thanks and regards

Daniel


 
Reply With Quote
 
 
 
 
Paul B
Guest
Posts: n/a
 
      5th May 2005
Daniel, you could use a helper column and put in this and fill down, then
copy and paste special over you data
="newword"&" "&A1

or with a macro

Sub Add_Word()
'will add newword in front of whats in the used range in column A
'Change to your range
Set rng = Intersect(Range("A:A"), ActiveSheet.UsedRange)
For Each c In rng
'change to the word you want to add
c.Value = "newword " & c
Next
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

"Daniel" <nospam@nowhere> wrote in message
news:(E-Mail Removed)...
> Hi
>
> I have a row of cells, each with a different word, being part of a
> description.
> I need to insert a word, the same word, in front of the words in each

cell?
> please let me know how to do that, if it can be done.
>
> thanks and regards
>
> Daniel
>
>



 
Reply With Quote
 
Daniel
Guest
Posts: n/a
 
      5th May 2005
Excellent,

thanks for your help.

Daniel
"Paul B" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Daniel, you could use a helper column and put in this and fill down, then
> copy and paste special over you data
> ="newword"&" "&A1
>
> or with a macro
>
> Sub Add_Word()
> 'will add newword in front of whats in the used range in column A
> 'Change to your range
> Set rng = Intersect(Range("A:A"), ActiveSheet.UsedRange)
> For Each c In rng
> 'change to the word you want to add
> c.Value = "newword " & c
> Next
> 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
>
> "Daniel" <nospam@nowhere> wrote in message
> news:(E-Mail Removed)...
>> Hi
>>
>> I have a row of cells, each with a different word, being part of a
>> description.
>> I need to insert a word, the same word, in front of the words in each

> cell?
>> please let me know how to do that, if it can be done.
>>
>> thanks and regards
>>
>> Daniel
>>
>>

>
>



 
Reply With Quote
 
Paul B
Guest
Posts: n/a
 
      5th May 2005
Your welcome

--
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

"Daniel" <nospam@nowhere> wrote in message
news:O$(E-Mail Removed)...
> Excellent,
>
> thanks for your help.
>
> Daniel
> "Paul B" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > Daniel, you could use a helper column and put in this and fill down,

then
> > copy and paste special over you data
> > ="newword"&" "&A1
> >
> > or with a macro
> >
> > Sub Add_Word()
> > 'will add newword in front of whats in the used range in column A
> > 'Change to your range
> > Set rng = Intersect(Range("A:A"), ActiveSheet.UsedRange)
> > For Each c In rng
> > 'change to the word you want to add
> > c.Value = "newword " & c
> > Next
> > 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
> >
> > "Daniel" <nospam@nowhere> wrote in message
> > news:(E-Mail Removed)...
> >> Hi
> >>
> >> I have a row of cells, each with a different word, being part of a
> >> description.
> >> I need to insert a word, the same word, in front of the words in each

> > cell?
> >> please let me know how to do that, if it can be done.
> >>
> >> thanks and regards
> >>
> >> Daniel
> >>
> >>

> >
> >

>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Inserting a word doc as an icon in a 2007 word document Kim Microsoft Word Document Management 1 16th Aug 2008 03:26 AM
Inserting the word Subect in Word 2007 Tom Corbett Microsoft Word Document Management 0 22nd May 2008 08:57 PM
Inserting Word Tables into Powerpoint from Word =?Utf-8?B?RGVl?= Microsoft Powerpoint 2 4th May 2005 02:20 PM
Word Interop: Quickly Inserting HTML Files into Word Doc ajk Microsoft C# .NET 1 9th Apr 2004 03:47 PM
Word Interop: Quickly Inserting HTML Files into Word ajk Microsoft C# .NET 0 9th Apr 2004 06:47 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 04:02 AM.