G Guest Nov 16, 2004 #1 what formula can i use to copy info in one cell of excell2003 to another cell on a different sheet
G Glen Mettler Nov 16, 2004 #2 Sheets("From Sheet").Range("A1:C20").Copy Sheets("To Sheet").Range("A1") (or you can use the sheet index number instead of the name) Glen
Sheets("From Sheet").Range("A1:C20").Copy Sheets("To Sheet").Range("A1") (or you can use the sheet index number instead of the name) Glen
G Gord Dibben Nov 17, 2004 #3 On sheet2 in a cell..... Enter =Sheet1!A1 When Sheet1 A1 is changed, the value in sheet2 will update.
On sheet2 in a cell..... Enter =Sheet1!A1 When Sheet1 A1 is changed, the value in sheet2 will update.