Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 59
Default Copying from one cell to another cell

Basically the procedure involves me copying a value from Cell C3 from Sheet3
into a Range of cells on Sheet1, the reason why I don't specify the cells on
Sheet1 is because I am not only copying into one cell on Sheet1. Sheet3 is
basically updated everyday, so I basically want to copy the values from the
cell in Sheet3 into Sheet1 but not overwriting the data that is already just
basically adding to the data that is already there, the column that I'm
copying the data into is Column D on Sheet1. I basically want to do the
samething for Sheet3 Cell C4, basically copying data from that cell into
column E on Sheet1, and also doing the samething for Sheet4, copying Cell C3
from Sheet4 into column H on Sheet1. There is already data on Sheet1 so I
would just like to add to what is already there without overwriting anything.
I recorded a macro, which you can see below:


Sub Macro2()

Sheets("Sheet3").Select
Range("C3").Select
Selection.Copy
Sheets("Sheet1").Select
Range("D8").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Sheets("Sheet3").Select
Range("C4").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Sheet1").Select
Range("E8").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Sheets("Sheet4").Select
Range("C3").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Sheet1").Select
Range("H8").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
ActiveWorkbook.Save
End Sub

Basically the macro only works for one cell, but it overwrites the data that
is already within the cells on sheet1, I just want it to add to that data
that is already there, so if you can help me with this it would be greatly
appreciated, thanks

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 735
Default Copying from one cell to another cell

If I understand you correctly..

You have a value on Sheet3 Range C3 and Range C4 (the source) which you wish
to add to the values already in Sheet1 Column D or Column E (the target).

How do you wish to specify the target range? The whole of column D and E or
something else?

Should be straightforward given the conditions. Post your specifc needs

--

Regards,
Nigel




"drinese18" wrote in message
...
Basically the procedure involves me copying a value from Cell C3 from
Sheet3
into a Range of cells on Sheet1, the reason why I don't specify the cells
on
Sheet1 is because I am not only copying into one cell on Sheet1. Sheet3 is
basically updated everyday, so I basically want to copy the values from
the
cell in Sheet3 into Sheet1 but not overwriting the data that is already
just
basically adding to the data that is already there, the column that I'm
copying the data into is Column D on Sheet1. I basically want to do the
samething for Sheet3 Cell C4, basically copying data from that cell into
column E on Sheet1, and also doing the samething for Sheet4, copying Cell
C3
from Sheet4 into column H on Sheet1. There is already data on Sheet1 so I
would just like to add to what is already there without overwriting
anything.
I recorded a macro, which you can see below:


Sub Macro2()

Sheets("Sheet3").Select
Range("C3").Select
Selection.Copy
Sheets("Sheet1").Select
Range("D8").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Sheets("Sheet3").Select
Range("C4").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Sheet1").Select
Range("E8").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Sheets("Sheet4").Select
Range("C3").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Sheet1").Select
Range("H8").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
ActiveWorkbook.Save
End Sub

Basically the macro only works for one cell, but it overwrites the data
that
is already within the cells on sheet1, I just want it to add to that data
that is already there, so if you can help me with this it would be greatly
appreciated, thanks


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 59
Default Copying from one cell to another cell

Basically I want to copy the values into one cell at a time, every day I
would come in and update the sheet, so I want to copy the data from the
source sheet into cells on the destination sheet. Not overwriting anything
just adding to the data that is already there, for instance, if there is data
already in D8 that was added from the previous day, today when I get in and
update the source sheets, I want to copy the data automatically into D9 and
the same process goes on each day, D10, D11 and so on.

"Nigel" wrote:

If I understand you correctly..

You have a value on Sheet3 Range C3 and Range C4 (the source) which you wish
to add to the values already in Sheet1 Column D or Column E (the target).

How do you wish to specify the target range? The whole of column D and E or
something else?

Should be straightforward given the conditions. Post your specifc needs

--

Regards,
Nigel




"drinese18" wrote in message
...
Basically the procedure involves me copying a value from Cell C3 from
Sheet3
into a Range of cells on Sheet1, the reason why I don't specify the cells
on
Sheet1 is because I am not only copying into one cell on Sheet1. Sheet3 is
basically updated everyday, so I basically want to copy the values from
the
cell in Sheet3 into Sheet1 but not overwriting the data that is already
just
basically adding to the data that is already there, the column that I'm
copying the data into is Column D on Sheet1. I basically want to do the
samething for Sheet3 Cell C4, basically copying data from that cell into
column E on Sheet1, and also doing the samething for Sheet4, copying Cell
C3
from Sheet4 into column H on Sheet1. There is already data on Sheet1 so I
would just like to add to what is already there without overwriting
anything.
I recorded a macro, which you can see below:


Sub Macro2()

Sheets("Sheet3").Select
Range("C3").Select
Selection.Copy
Sheets("Sheet1").Select
Range("D8").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Sheets("Sheet3").Select
Range("C4").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Sheet1").Select
Range("E8").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Sheets("Sheet4").Select
Range("C3").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Sheet1").Select
Range("H8").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
ActiveWorkbook.Save
End Sub

Basically the macro only works for one cell, but it overwrites the data
that
is already within the cells on sheet1, I just want it to add to that data
that is already there, so if you can help me with this it would be greatly
appreciated, thanks


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 735
Default Copying from one cell to another cell

Sub CopyData()
With Sheets("Sheet1")
.Range("D" & .Cells(.Rows.Count, "D").End(xlUp).Row + 1) =
Sheets("Sheet3").Range("C3")
.Range("E" & .Cells(.Rows.Count, "E").End(xlUp).Row + 1) =
Sheets("Sheet3").Range("C4")
End With
End Sub

--

Regards,
Nigel




"drinese18" wrote in message
...
Basically I want to copy the values into one cell at a time, every day I
would come in and update the sheet, so I want to copy the data from the
source sheet into cells on the destination sheet. Not overwriting anything
just adding to the data that is already there, for instance, if there is
data
already in D8 that was added from the previous day, today when I get in
and
update the source sheets, I want to copy the data automatically into D9
and
the same process goes on each day, D10, D11 and so on.

"Nigel" wrote:

If I understand you correctly..

You have a value on Sheet3 Range C3 and Range C4 (the source) which you
wish
to add to the values already in Sheet1 Column D or Column E (the target).

How do you wish to specify the target range? The whole of column D and E
or
something else?

Should be straightforward given the conditions. Post your specifc needs

--

Regards,
Nigel




"drinese18" wrote in message
...
Basically the procedure involves me copying a value from Cell C3 from
Sheet3
into a Range of cells on Sheet1, the reason why I don't specify the
cells
on
Sheet1 is because I am not only copying into one cell on Sheet1. Sheet3
is
basically updated everyday, so I basically want to copy the values from
the
cell in Sheet3 into Sheet1 but not overwriting the data that is already
just
basically adding to the data that is already there, the column that I'm
copying the data into is Column D on Sheet1. I basically want to do the
samething for Sheet3 Cell C4, basically copying data from that cell
into
column E on Sheet1, and also doing the samething for Sheet4, copying
Cell
C3
from Sheet4 into column H on Sheet1. There is already data on Sheet1 so
I
would just like to add to what is already there without overwriting
anything.
I recorded a macro, which you can see below:


Sub Macro2()

Sheets("Sheet3").Select
Range("C3").Select
Selection.Copy
Sheets("Sheet1").Select
Range("D8").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Sheets("Sheet3").Select
Range("C4").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Sheet1").Select
Range("E8").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Sheets("Sheet4").Select
Range("C3").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Sheet1").Select
Range("H8").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
ActiveWorkbook.Save
End Sub

Basically the macro only works for one cell, but it overwrites the data
that
is already within the cells on sheet1, I just want it to add to that
data
that is already there, so if you can help me with this it would be
greatly
appreciated, thanks



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 59
Default Copying from one cell to another cell

Its basically bringing up an error for the .Range statements, are they
suppose to be in the same line?

"Nigel" wrote:

Sub CopyData()
With Sheets("Sheet1")
.Range("D" & .Cells(.Rows.Count, "D").End(xlUp).Row + 1) =
Sheets("Sheet3").Range("C3")
.Range("E" & .Cells(.Rows.Count, "E").End(xlUp).Row + 1) =
Sheets("Sheet3").Range("C4")
End With
End Sub

--

Regards,
Nigel




"drinese18" wrote in message
...
Basically I want to copy the values into one cell at a time, every day I
would come in and update the sheet, so I want to copy the data from the
source sheet into cells on the destination sheet. Not overwriting anything
just adding to the data that is already there, for instance, if there is
data
already in D8 that was added from the previous day, today when I get in
and
update the source sheets, I want to copy the data automatically into D9
and
the same process goes on each day, D10, D11 and so on.

"Nigel" wrote:

If I understand you correctly..

You have a value on Sheet3 Range C3 and Range C4 (the source) which you
wish
to add to the values already in Sheet1 Column D or Column E (the target).

How do you wish to specify the target range? The whole of column D and E
or
something else?

Should be straightforward given the conditions. Post your specifc needs

--

Regards,
Nigel




"drinese18" wrote in message
...
Basically the procedure involves me copying a value from Cell C3 from
Sheet3
into a Range of cells on Sheet1, the reason why I don't specify the
cells
on
Sheet1 is because I am not only copying into one cell on Sheet1. Sheet3
is
basically updated everyday, so I basically want to copy the values from
the
cell in Sheet3 into Sheet1 but not overwriting the data that is already
just
basically adding to the data that is already there, the column that I'm
copying the data into is Column D on Sheet1. I basically want to do the
samething for Sheet3 Cell C4, basically copying data from that cell
into
column E on Sheet1, and also doing the samething for Sheet4, copying
Cell
C3
from Sheet4 into column H on Sheet1. There is already data on Sheet1 so
I
would just like to add to what is already there without overwriting
anything.
I recorded a macro, which you can see below:


Sub Macro2()

Sheets("Sheet3").Select
Range("C3").Select
Selection.Copy
Sheets("Sheet1").Select
Range("D8").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Sheets("Sheet3").Select
Range("C4").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Sheet1").Select
Range("E8").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Sheets("Sheet4").Select
Range("C3").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Sheet1").Select
Range("H8").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
ActiveWorkbook.Save
End Sub

Basically the macro only works for one cell, but it overwrites the data
that
is already within the cells on sheet1, I just want it to add to that
data
that is already there, so if you can help me with this it would be
greatly
appreciated, thanks





  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 735
Default Copying from one cell to another cell

Yes, the wrap occurs in the newsgroup reader....

--

Regards,
Nigel




"drinese18" wrote in message
...
Its basically bringing up an error for the .Range statements, are they
suppose to be in the same line?

"Nigel" wrote:

Sub CopyData()
With Sheets("Sheet1")
.Range("D" & .Cells(.Rows.Count, "D").End(xlUp).Row + 1) =
Sheets("Sheet3").Range("C3")
.Range("E" & .Cells(.Rows.Count, "E").End(xlUp).Row + 1) =
Sheets("Sheet3").Range("C4")
End With
End Sub

--

Regards,
Nigel




"drinese18" wrote in message
...
Basically I want to copy the values into one cell at a time, every day
I
would come in and update the sheet, so I want to copy the data from the
source sheet into cells on the destination sheet. Not overwriting
anything
just adding to the data that is already there, for instance, if there
is
data
already in D8 that was added from the previous day, today when I get in
and
update the source sheets, I want to copy the data automatically into D9
and
the same process goes on each day, D10, D11 and so on.

"Nigel" wrote:

If I understand you correctly..

You have a value on Sheet3 Range C3 and Range C4 (the source) which
you
wish
to add to the values already in Sheet1 Column D or Column E (the
target).

How do you wish to specify the target range? The whole of column D and
E
or
something else?

Should be straightforward given the conditions. Post your specifc
needs

--

Regards,
Nigel




"drinese18" wrote in message
...
Basically the procedure involves me copying a value from Cell C3
from
Sheet3
into a Range of cells on Sheet1, the reason why I don't specify the
cells
on
Sheet1 is because I am not only copying into one cell on Sheet1.
Sheet3
is
basically updated everyday, so I basically want to copy the values
from
the
cell in Sheet3 into Sheet1 but not overwriting the data that is
already
just
basically adding to the data that is already there, the column that
I'm
copying the data into is Column D on Sheet1. I basically want to do
the
samething for Sheet3 Cell C4, basically copying data from that cell
into
column E on Sheet1, and also doing the samething for Sheet4, copying
Cell
C3
from Sheet4 into column H on Sheet1. There is already data on Sheet1
so
I
would just like to add to what is already there without overwriting
anything.
I recorded a macro, which you can see below:


Sub Macro2()

Sheets("Sheet3").Select
Range("C3").Select
Selection.Copy
Sheets("Sheet1").Select
Range("D8").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Sheets("Sheet3").Select
Range("C4").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Sheet1").Select
Range("E8").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Sheets("Sheet4").Select
Range("C3").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Sheet1").Select
Range("H8").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
ActiveWorkbook.Save
End Sub

Basically the macro only works for one cell, but it overwrites the
data
that
is already within the cells on sheet1, I just want it to add to that
data
that is already there, so if you can help me with this it would be
greatly
appreciated, thanks




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Copying selected contents in one cell to another cell The Needy Excel Worksheet Functions 3 September 14th 09 09:59 PM
Copying cell contents from many cells and pasting into one cell MDN Excel Discussion (Misc queries) 7 December 10th 07 08:56 PM
Copying formulas from cell to cell to cell to....... Tom Hardy Excel Discussion (Misc queries) 3 June 15th 06 03:29 PM
Copying format to a new cell, w/o overwriting destination cell contents James C Excel Discussion (Misc queries) 1 October 18th 05 08:02 PM
copying the function contained within a cell to anouther cell. DMB Excel Worksheet Functions 2 September 1st 05 05:49 PM


All times are GMT +1. The time now is 06:13 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"