View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default help, find copied cell

Excel doesn't have anything that would allow you to know the range that was
copied.



x taol wrote:

sub yyy()
Dim rngObj As Range
If Application.CutCopyMode = xlCopy Then
Set rngObj = Application.blinking ' my source(virtual)
MsgBox "the current address of copied cell is" & rngObj.Address
End If
End Sub

*** Sent via Developersdex http://www.developersdex.com ***


--

Dave Peterson