Moving Value Sheet to Sheet

A

Adam.Effinger

So, I'm working to create a macro that will keep track of test cases fo
my company. I would like to know the following:

If I want to take a value (% done) and move that to the results page
How would I do that? I know I can use =sum(stuff) on the same page, bu
how do I change from one page to another
 
L

Luke M

You can either have the macro do a copy and paste if you need everything
transferred, but it you just need the value, the quicker way it to do a
direct callout like this:

Sheets("Sheet2").Range("A3").Value = _
Sheets("Sheet1").Range("C6").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

Top