#1   Report Post  
Posted to microsoft.public.excel.misc
Ray Ray is offline
external usenet poster
 
Posts: 267
Default Explain THIS ...

I'm hoping an MVP can help to explain this .... I originally posted
this question a couple of days ago:

**********
Excel won't allow me to copy a range from one sheet and paste on
another (within the same workbook)! I can copy the selected range,
but when I switch sheets, it's as if the CutCopyMode changes to False
or something.
**********

This same thing happens in most of my workbooks, but not all of
them .... I've investigated every setting I know of and they appear to
be set consistently among the workbooks.

This is getting REALLY annoying to deal with ....

ANYONE have ANY ideas?

TIA,
Ray

  #2   Report Post  
Posted to microsoft.public.excel.misc
bj bj is offline
external usenet poster
 
Posts: 1,397
Default Explain THIS ...

there may be some event macros.
try opening excel in Safe mode and see if the same thing happens.
If it doesn't, check for macros on on sheet modules, workbook modules or
otherwise.
there are a lot of the event macros for which this would be a by product.
Part of the reason I often will not use them.

"Ray" wrote:

I'm hoping an MVP can help to explain this .... I originally posted
this question a couple of days ago:

**********
Excel won't allow me to copy a range from one sheet and paste on
another (within the same workbook)! I can copy the selected range,
but when I switch sheets, it's as if the CutCopyMode changes to False
or something.
**********

This same thing happens in most of my workbooks, but not all of
them .... I've investigated every setting I know of and they appear to
be set consistently among the workbooks.

This is getting REALLY annoying to deal with ....

ANYONE have ANY ideas?

TIA,
Ray


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,365
Default Explain THIS ...

I saw the other post and didn't really have anything to offer - still don't,
but...

Since you say "my workbooks" I'm kind of assuming they're ones you've
created yourself and don't have any code somewhere to inhibit cut'n'paste or
copy'n'paste.

The obvious culprits would be having either the individual sheets or the
workbook(s) protected from change - or both.

Some experimenting might help pinpoint the source of the problem.

#1 - can you copy from Excel into another application, such as a Word
document?
#2 - can you copy and paste within other applications such as Word or Notepad?

If you have pretty much lost copy and paste ability across the board (as
cannot do it in other applications either) then it points to a problem with
the clipboard itself and may require a repair installation of Windows to fix.

If this is strictly a problem within Excel then the quick fix attempt would
be to try a repair install of Office/Excel.



"Ray" wrote:

I'm hoping an MVP can help to explain this .... I originally posted
this question a couple of days ago:

**********
Excel won't allow me to copy a range from one sheet and paste on
another (within the same workbook)! I can copy the selected range,
but when I switch sheets, it's as if the CutCopyMode changes to False
or something.
**********

This same thing happens in most of my workbooks, but not all of
them .... I've investigated every setting I know of and they appear to
be set consistently among the workbooks.

This is getting REALLY annoying to deal with ....

ANYONE have ANY ideas?

TIA,
Ray


  #4   Report Post  
Posted to microsoft.public.excel.misc
Ray Ray is offline
external usenet poster
 
Posts: 267
Default Explain THIS ...

Thanks for the tips....

I'll check my Event code, as I know there are a couple of those --
what am I looking for? I thought that turning off things like this
(ie Application.CutCopyMode=False) were automatically 'reset' when the
Sub ended? It works that way for other settings right (ie
Application.DisplayAlerts).

JLatham -- I can actually copy/paste between workbooks, even if (in
one of them) I can't copy/paste WITHIN the workbook. It should be
noted that it's only SOME workbooks where I can't copy/paste within
the WB .... others are completely normal. I tend to think that it's
code related, although the offending WBs were working last week and
not much was done to them in the meantime. <shrug

Thanks for the help though .... I'll keep searching!


  #5   Report Post  
Posted to microsoft.public.excel.misc
CLR CLR is offline
external usenet poster
 
Posts: 1,998
Default Explain THIS ...

Starting the offending workbook(s) with macros disabled should clearly
indicate if the macros were causing the problem

Vaya con Dios,
Chuck, CABGx3




"Ray" wrote:

Thanks for the tips....

I'll check my Event code, as I know there are a couple of those --
what am I looking for? I thought that turning off things like this
(ie Application.CutCopyMode=False) were automatically 'reset' when the
Sub ended? It works that way for other settings right (ie
Application.DisplayAlerts).

JLatham -- I can actually copy/paste between workbooks, even if (in
one of them) I can't copy/paste WITHIN the workbook. It should be
noted that it's only SOME workbooks where I can't copy/paste within
the WB .... others are completely normal. I tend to think that it's
code related, although the offending WBs were working last week and
not much was done to them in the meantime. <shrug

Thanks for the help though .... I'll keep searching!





  #6   Report Post  
Posted to microsoft.public.excel.misc
Ray Ray is offline
external usenet poster
 
Posts: 267
Default Explain THIS ...

Chuck .... tried that (macros disabled) and copy/paste worked again,
so it would seem that macros are the culprit. Turns out that there
are only a couple of Event macros -- a 'before_print', a
'before_save', and a 'worksheet_change' macro. None of these are
setting CutCopyMode to False ...

I'm stumped ....

  #8   Report Post  
Posted to microsoft.public.excel.misc
bj bj is offline
external usenet poster
 
Posts: 1,397
Default Explain THIS ...

it doesnt have to formally set the CCM to false
and selection and action will do that in the background especially in the
worksheet_change macro

"Ray" wrote:

Chuck .... tried that (macros disabled) and copy/paste worked again,
so it would seem that macros are the culprit. Turns out that there
are only a couple of Event macros -- a 'before_print', a
'before_save', and a 'worksheet_change' macro. None of these are
setting CutCopyMode to False ...

I'm stumped ....


  #9   Report Post  
Posted to microsoft.public.excel.misc
CLR CLR is offline
external usenet poster
 
Posts: 1,998
Default Explain THIS ...

If you have not "saved", nor "printed" then those two macros would appear not
to be part of the problem. Pretty good chance that the "worksheet change"
macro is. Try just disabling that one macro alone, just to be sure.

I have found many times that I cannot directly "read" the code (especially
that contributed by much more accomplished programmers)....ie, it's not in
even slight english.........for that reason I lean toward more "readable"
code when I can, even tho it might not be as fast, it's at least editable in
the future (by me) when problems or changes occur. For the exceptions,
thorough documentation is a fair second place.

hth
Vaya con Dios,
Chuck, CABGx3





"Ray" wrote:

Chuck .... tried that (macros disabled) and copy/paste worked again,
so it would seem that macros are the culprit. Turns out that there
are only a couple of Event macros -- a 'before_print', a
'before_save', and a 'worksheet_change' macro. None of these are
setting CutCopyMode to False ...

I'm stumped ....


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
explain this one to me.... Dave F Excel Discussion (Misc queries) 10 November 16th 06 11:05 PM
Please explain Maxwell Excel Worksheet Functions 1 March 31st 06 01:12 PM
How to explain??... tagr Excel Discussion (Misc queries) 2 March 18th 06 03:34 AM
Let me see if I can explain this... jsc3489 Excel Worksheet Functions 0 July 22nd 05 05:04 PM
Explain these please Sal Excel Worksheet Functions 1 March 24th 05 08:43 PM


All times are GMT +1. The time now is 12:21 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"