Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi all,
how can I copy the values of all selected cells to the same cells in another Sheet ? Thanks for any help ! Hans |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dim myCell as Range
For Each myCell In Selection Worksheets("Other Sheet").Range(myCell.Address).Value = myCell.Value Next myCell HTH, Bernie MS Excel MVP wrote in message ... Hi all, how can I copy the values of all selected cells to the same cells in another Sheet ? Thanks for any help ! Hans |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thank you, Bernie,
it works fine ! Hans |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copy Visible Cells in Sheet with Merged and Hidden Cells | Excel Discussion (Misc queries) | |||
Cannot copy selected cells | Excel Discussion (Misc queries) | |||
Copy and replace xlsm files, but retain the values in selected cells... | Excel Discussion (Misc queries) | |||
display zero values in selected cells | Excel Discussion (Misc queries) | |||
Copy cells with unspecified values to new sheet | Excel Programming |