Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Im using excel 2007 and I would really like to link two cells from same
workbook but different worksheets where if i enter information( text) into the first cell (Sheet 1 A1)it reads in the second cell (sheet 2 B2) but if i enter it into the second cell (sheet 2 B2) first it can be read in first cell (sheet 1 A1). ive tried creating a circular reference but i find that once i type in the text that it erases the formula. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
You can't do that, if a cell contains a formula then that's it and overtyping erases the formula. You need 4 cells. One the 'recieve' and one to 'send' in each workbook. Mike "misscharliebrown" wrote: Im using excel 2007 and I would really like to link two cells from same workbook but different worksheets where if i enter information( text) into the first cell (Sheet 1 A1)it reads in the second cell (sheet 2 B2) but if i enter it into the second cell (sheet 2 B2) first it can be read in first cell (sheet 1 A1). ive tried creating a circular reference but i find that once i type in the text that it erases the formula. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
In sheet1 module enter this event code.
Private Sub Worksheet_Change(ByVal Target As Range) If Intersect(Target, Me.Range("A1")) Is Nothing Then Exit Sub On Error GoTo endit Application.EnableEvents = False Sheets("Sheet2").Range("B2").Value = Target.Value endit: Application.EnableEvents = True End Sub In sheet2 module enter this event code. Private Sub Worksheet_Change(ByVal Target As Range) If Intersect(Target, Me.Range("B2")) Is Nothing Then Exit Sub On Error GoTo endit Application.EnableEvents = False Sheets("Sheet1").Range("A1").Value = Target.Value endit: Application.EnableEvents = True End Sub Gord Dibben MS Excel MVP On Wed, 24 Sep 2008 00:02:00 -0700, misscharliebrown wrote: Im using excel 2007 and I would really like to link two cells from same workbook but different worksheets where if i enter information( text) into the first cell (Sheet 1 A1)it reads in the second cell (sheet 2 B2) but if i enter it into the second cell (sheet 2 B2) first it can be read in first cell (sheet 1 A1). ive tried creating a circular reference but i find that once i type in the text that it erases the formula. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
directional keys go the wrong dir in a text box | Excel Discussion (Misc queries) | |||
How do I set up a Speed and directional graph | Charts and Charting in Excel | |||
Linking a horizontal set of cells to a vertical sets of cells | Charts and Charting in Excel | |||
can you do a bi-directional link in excel | Excel Discussion (Misc queries) | |||
how do I move and activitated cell with a directional key movemen. | Excel Worksheet Functions |