Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I want to copy a date from a cell and paste it to a cell in another worksheet
in the same workbook. i am selecting the cells ok but the copy and paste operation do not seem to work. can anyone help ActiveSheet.Select Cells(z, 6).Copy Sheets("approvals").Select ActiveSheet.Select Cells(y, 5).Select Paste Cells(y, 5) -- Jack |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
try
Cells(z, 6).Copy Sheets("approvals").Cells(y, 5) or, for values only Sheets("approvals").Cells(y, 5).value=Cells(z, 6) -- Don Guillett SalesAid Software "Jack" wrote in message ... I want to copy a date from a cell and paste it to a cell in another worksheet in the same workbook. i am selecting the cells ok but the copy and paste operation do not seem to work. can anyone help ActiveSheet.Select Cells(z, 6).Copy Sheets("approvals").Select ActiveSheet.Select Cells(y, 5).Select Paste Cells(y, 5) -- Jack |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Don
that did not help although I did not say that the cell I want to copy gets it's date from a formula like = B34 +14 , thus it is just a snapshot of the value in the cell that I want, sorry -- Jack "Don Guillett" wrote: try Cells(z, 6).Copy Sheets("approvals").Cells(y, 5) or, for values only Sheets("approvals").Cells(y, 5).value=Cells(z, 6) -- Don Guillett SalesAid Software "Jack" wrote in message ... I want to copy a date from a cell and paste it to a cell in another worksheet in the same workbook. i am selecting the cells ok but the copy and paste operation do not seem to work. can anyone help ActiveSheet.Select Cells(z, 6).Copy Sheets("approvals").Select ActiveSheet.Select Cells(y, 5).Select Paste Cells(y, 5) -- Jack |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Can't Copy and Paste or Paste Special between Excel Workbooks | Excel Discussion (Misc queries) | |||
Copy, paste without file name referenced after paste | Excel Discussion (Misc queries) | |||
help w/ generic copy & paste/paste special routine | Excel Programming | |||
Excel cut/Paste Problem: Year changes after data is copy and paste | Excel Discussion (Misc queries) | |||
Copy and Paste macro needs to paste to a changing cell reference | Excel Programming |