Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
gus gus is offline
external usenet poster
 
Posts: 10
Default Copy one cell to another

How can i get a cell to input the same information i type in one including
text, for example:
cell 1
F3: John Doe 23023

and i want the same information that i display to show up on another cell

f20: John doe 23023

Help please thank you
  #2   Report Post  
Posted to microsoft.public.excel.newusers
FC FC is offline
external usenet poster
 
Posts: 130
Default Copy one cell to another

In F20 write this simple formula:
=F3.

"gus" wrote:

How can i get a cell to input the same information i type in one including
text, for example:
cell 1
F3: John Doe 23023

and i want the same information that i display to show up on another cell

f20: John doe 23023

Help please thank you

  #3   Report Post  
Posted to microsoft.public.excel.newusers
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Copy one cell to another

In F20 write this simple formula:
=F3


Suggest a small tweak, in F20: =IF(F3="","",F3)
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:19,000 Files:362 Subscribers:62
xdemechanik
---
  #4   Report Post  
Posted to microsoft.public.excel.newusers
gus gus is offline
external usenet poster
 
Posts: 10
Default Copy one cell to another

Thanks the =f3 work fine thank you very much :)

"FC" wrote:

In F20 write this simple formula:
=F3.

"gus" wrote:

How can i get a cell to input the same information i type in one including
text, for example:
cell 1
F3: John Doe 23023

and i want the same information that i display to show up on another cell

f20: John doe 23023

Help please thank you

  #5   Report Post  
Posted to microsoft.public.excel.newusers
gus gus is offline
external usenet poster
 
Posts: 10
Default Copy one cell to another

thanks it work fine, perfect thanks a lot

"FC" wrote:

In F20 write this simple formula:
=F3.

"gus" wrote:

How can i get a cell to input the same information i type in one including
text, for example:
cell 1
F3: John Doe 23023

and i want the same information that i display to show up on another cell

f20: John doe 23023

Help please thank you



  #6   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 10,124
Default Copy one cell to another

Without formulas to copy the entry 17 rows down.
Right click sheet tabview codeinsert this
If you only want one use the formula suggested.

Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("f2:f222")) Is Nothing Then Exit Sub
Application.EnableEvents = False
Target.Offset(17) = Target
Application.EnableEvents = True
End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"gus" wrote in message
...
How can i get a cell to input the same information i type in one including
text, for example:
cell 1
F3: John Doe 23023

and i want the same information that i display to show up on another cell

f20: John doe 23023

Help please thank you


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
How can I copy a value from a cell and paste it into another cell while adding it to the previous value in that cell [email protected] Excel Worksheet Functions 2 November 7th 07 09:39 AM
I copy a formula and the results copy from the original cell brooklynsd Excel Discussion (Misc queries) 1 June 23rd 07 01:35 AM
Copy data in one cell to blank cell immediately below, repeat Jeff Excel Worksheet Functions 1 May 19th 06 07:12 PM
Select cell, Copy it, Paste it, Return to Previous cell spydor Excel Discussion (Misc queries) 1 December 30th 05 01:29 PM
Copy cell format to cell on another worksht and update automatical kevinm Excel Worksheet Functions 21 May 19th 05 11:07 AM


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