![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Board Regular
Join Date: Mar 2002
Location: Boston, MA
Posts: 105
|
In another post, Dave Hawley wrote the "preferred way" of copying/cutting and pasting was:
Sheet1.Range("A1").Copy destination:=Sheet2.Range("A1") Is there a similar short format for copying a cell and pasting only its values? Additionally, can you combine commands such as Sheet1.Columns("A:A").Copy destination:=Sheet2.Range("A1")? Thanks. |
|
|
|
|
|
#2 |
|
Board Regular
Join Date: Feb 2002
Location: Where the wild roses grow
Posts: 285
|
I think it might be:
PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _ False, Transpose:=False Obviously changing the conditions to suit you |
|
|
|
|
|
#3 |
|
Board Regular
Join Date: Mar 2002
Location: Cincinnati, Ohio, USA
Posts: 6,824
|
If values are all you need then try,
Sheet2.Range("A1").value = Sheet1.Range("A1").value Tom [ This Message was edited by: TsTom on 2002-04-10 03:14 ] |
|
|
|
|
|
#4 |
|
Banned
Join Date: Feb 2002
Posts: 1,582
|
Arh! Tom, it's good to see some good habits being formed.
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|