Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Manual control of link updating for downloaded quotes? | Excel Discussion (Misc queries) | |||
Auto Copying Data | Excel Worksheet Functions | |||
Auto updating pivot tables using external XML data | New Users to Excel | |||
Excel Macro to Copy & Paste | Excel Worksheet Functions | |||
From several workbooks onto one excel worksheet | Excel Discussion (Misc queries) |