Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / Programming / March 2008

Tip: Looking for answers? Try searching our database.

Cut - Insert without .Select

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
N+ - 01 Mar 2008 19:08 GMT
hi all i need to make a cut - insert(value) without using select command of
macros..
can u help me ?!? ty !
Don Guillett - 01 Mar 2008 19:47 GMT
Sub movedata()
Range("c7").Cut Range("f7").insert
End Sub
or maybe this is what you want
Sub movedata()
Range("c6").Copy Range("f7")
Range("c6").ClearContents
End Sub
Signature

Don Guillett
Microsoft MVP Excel
SalesAid Software
dguillett1@austin.rr.com

> hi all i need to make a cut - insert(value) without using select command
> of
> macros..
> can u help me ?!? ty !
N+ - 01 Mar 2008 20:23 GMT
built easiest ;)

Range("A80").Value = Range("F2").Value

 Range("A80").Copy
     Range("A81").Insert Shift:=xlDown

with this i can move thru the sheet as usual when the macro is running..

> Sub movedata()
> Range("c7").Cut Range("f7").insert
[quoted text clipped - 8 lines]
> > macros..
> > can u help me ?!? ty !
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.