Steve, If all you want is F1 to be dependent on A1, you just make the
formula in F1 say "=A1". If on the other hand, you want something which
will cause either cell to automatically update when the other is changed ...
then the Worksheet_Change event code which I gave earlier (pasted again
below here) should do the trick. If you need help with getting to that point
I would be happy to explain more, but will not go down that path if you are
not interested. I am going on vacation shortly as well, others might help
you further.
Regards,
Bill
Option Explicit
'Be Sure You Have Defined The Range FirstRef and
'SecondRef appropriately
Private Sub Worksheet_Change(ByVal Target As Range)
'Code to cause a change in one reference range to be automatically
'carried over to another, in either direction.
Static IgnoreMyChange As Boolean ' Don't want steps in this routine to fire
'when we set second
cell = first, a static
'variable is one way
to keep tabs on
'what's happening.
If IgnoreMyChange Then 'This sub was called through the VBA operation, not
user input
IgnoreMyChange = False
Exit Sub
End If
If Replace$(Target.Address, "$", "") = _
Replace$(Range("firstref").Address, "$", "") Then
'Target was firstref, set secondref to this
IgnoreMyChange = True
Range("SecondRef").Value = Range("FirstRef").Value
IgnoreMyChange = False
Exit Sub
End If
If Replace$(Target.Address, "$", "") = _
Replace$(Range("SecondRef").Address, "$", "") Then
'Target was SecondRef, set FirstRef to this
IgnoreMyChange = True
Range("FirstRef").Value = Range("Secondref").Value
IgnoreMyChange = False
Exit Sub
End If
End Sub