Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 113
Default Auto Copying Data

Is there any way I can auto copy text from one cell to another without typing
it each time? I know how to use the function with numbers but when it comes
to the text Im lost. For exaple if I typed "TEXT" in cell A2 and wanted it to
repeat in cell A9, A15 and A17. If its possible Im looking to type it once
and have it automatically paste it into the cells I assigned.

Thanks in advance.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,124
Default Auto Copying Data

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Row < 2 Or Target.Column < 1 Then Exit Sub
Cells(Target.Row, "b") = Target
Cells(Target.Row, "d") = Target
Cells(Target.Row, "g") = Target
Cells(Target.Row, "h") = Target
End Sub


--
Don Guillett
SalesAid Software

"Jessica" wrote in message
...
Is there any way I can auto copy text from one cell to another without
typing
it each time? I know how to use the function with numbers but when it
comes
to the text Im lost. For exaple if I typed "TEXT" in cell A2 and wanted it
to
repeat in cell A9, A15 and A17. If its possible Im looking to type it once
and have it automatically paste it into the cells I assigned.

Thanks in advance.



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default Auto Copying Data

Jessica

In each of the cells A9, A15, A17 enter =A2


Gord Dibben MS Excel MVP

On Fri, 1 Dec 2006 09:22:01 -0800, Jessica
wrote:

Is there any way I can auto copy text from one cell to another without typing
it each time? I know how to use the function with numbers but when it comes
to the text Im lost. For exaple if I typed "TEXT" in cell A2 and wanted it to
repeat in cell A9, A15 and A17. If its possible Im looking to type it once
and have it automatically paste it into the cells I assigned.

Thanks in advance.


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
Manual control of link updating for downloaded quotes? dk_ Excel Discussion (Misc queries) 9 November 15th 06 01:04 PM
Auto Copying Data Freshman Excel Worksheet Functions 14 July 3rd 06 06:01 AM
Auto updating pivot tables using external XML data serdar New Users to Excel 0 March 12th 06 06:29 AM
Excel Macro to Copy & Paste [email protected] Excel Worksheet Functions 0 December 1st 05 01:56 PM
From several workbooks onto one excel worksheet steve Excel Discussion (Misc queries) 6 December 1st 05 08:03 AM


All times are GMT +1. The time now is 04:10 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"