push rather than pull cell data.

  • Thread starter Thread starter BINZA@
  • Start date Start date
B

BINZA@

Is it possible with excel to push data from cells to another sheet in same
excel file rather than pull it from the cells you want populated each time
cell data is changed.

Thanks for any help with this.
 
Maybe you could use a macro.



BINZA@ said:
Is it possible with excel to push data from cells to another sheet in same
excel file rather than pull it from the cells you want populated each time
cell data is changed.

Thanks for any help with this.
 
sheets("sourcesht").range("a2:a22").copy sheets("destsht").range("a2")

or (note ranges must be the same size)

sheets("destsht").range("a2:a22").value= _
sheets("sourcesht").range("a4:a24").value
 
Maybe linking cells would work for you.

Enter =Sheet1!A1 in any cell on Sheet2 and that cell will update when Sheet1
A1 is changed.


Gord Dibben MS Excel MVP
 

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