assign value to cell on different sheet

  • Thread starter Thread starter ranswert
  • Start date Start date
R

ranswert

How do I write a code to assign a value to a cell on a different sheet?
Thanks
 
worksheets("someothersheetnamehere").range("a1").value = 1234

or

worksheets("someothersheetnamehere").range("a1").value _
= activesheet.range("b99").value
 

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