Totals From Another Worksheet

D

DNA

I want to have a worksheet for data entry, but add and display the totals
on another worksheet.

How?
 
D

Don Guillett

macro to
sheets("destination").range("a2:b6").value=sheets("source").range("a2:b6").v
alue
or in destination
source!a2
 
Top