Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Inserting Additional Text in Spreadsheet

How do I add the same word to the start of 900 different text descriptions
globally without individually editing all 900 line items?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
naz naz is offline
external usenet poster
 
Posts: 3
Default Inserting Additional Text in Spreadsheet

you can create a new field and add:

="STARTWORD"&<Click the cell to combine

copy this to all 900 lines. This should do the trick.

-NAZ-

On Jun 27, 8:54 am, SEBA Branch Inventory <SEBA Branch
wrote:
How do I add the same word to the start of 900 different text descriptions
globally without individually editing all 900 line items?



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Inserting Additional Text in Spreadsheet

One way ..

Assuming source text running in A1 down
and you want to prefix* the text: XXX
*with a space after XXX

Put in B1: ="XXX "&A1
Copy down to B900
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"SEBA Branch Inventory" wrote:
How do I add the same word to the start of 900 different text descriptions
globally without individually editing all 900 line items?

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,836
Default Inserting Additional Text in Spreadsheet

This macro will help you achieve your desired results:

Sub add_the_same_word()
For Each cell In Selection
cell.Value = "add the same word " & cell
Next
End Sub

FYI, change the stuff in quotes and make sure the cells are selected before
running the macro.

--
RyGuy


"SEBA Branch Inventory" wrote:

How do I add the same word to the start of 900 different text descriptions
globally without individually editing all 900 line items?

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
Additional rows added to spreadsheet when opening text files kidofseph Excel Discussion (Misc queries) 0 April 25th 07 09:54 PM
cell ref in function formula change when inserting additional colu STAR263 Excel Worksheet Functions 1 May 18th 06 11:04 PM
inserting an additional line of text within same cell knet22 Excel Worksheet Functions 2 February 17th 06 12:58 AM
Inserting additional data into a cell Alec H Excel Discussion (Misc queries) 4 February 9th 06 04:46 PM
Inserting additional data into an existing cell? CSJ545 Excel Discussion (Misc queries) 4 November 22nd 05 01:28 PM


All times are GMT +1. The time now is 02:55 PM.

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

About Us

"It's about Microsoft Excel"