Excel Cell formulas

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How would I make a cell show its results in another cell, without haveing to
enter, any kind of formula into that cell that I wanted the results displayed?
 
Open Excel
Select Sheet1
Alt+F11

Copy:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Sheet1.Range("B1").Value = Sheet1.Range("A1").Value
End Sub

Past on the white sheet.
Alt+F11

Write in A1
Enter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top