Several keyboard shortcuts not working

CRHAAG

New Member
Joined
Jul 3, 2014
Messages
46
I am completely flustered on this one. I was working in a sheet today and hit control+c like I always do to copy a cell and the next thing I new There was a different active cell and and several rows were hidden. I assumed it was a mistake on my part, but sure enough, every time I hit control+c it takes me to cell G40 and hides rows 41-55. Hitting control+s does something similar. Control+v still pastes.

I went into word and double checked that the editCopy keyboard shortcut is still set to control+c and it is. I cannot find other postings with this same problem. This is incredibly annoying. Any help would be appreciated.
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Have you checked to see if there is a macro in your workbook that's been assigned the shortcut ctrl + c?

To do this with your workbook active press Alt + F8 keys. Select Thisworkbook from the 'Macro in:' dropdown menu, select the macros, if any, one at a time, in the list that appears and click the Options button to see if the macro has been assigned a shortcut key.

Here's a simple example macro you can add to a new workbook that will select A3 and Hide/Unhide rows 1 & 2 on the active sheet. After you install it, press Alt + F8, select the macro, press Options and assign the shortcut ctrl+c to run the macro.
Code:
Sub Test()
With ActiveSheet
    .Range("A3").Select
    .Rows("1:2").Hidden = Not .Rows("1:2").Hidden
End With

End Sub
 
Upvote 0
Have you checked to see if there is a macro in your workbook that's been assigned the shortcut ctrl + c?

To do this with your workbook active press Alt + F8 keys. Select Thisworkbook from the 'Macro in:' dropdown menu, select the macros, if any, one at a time, in the list that appears and click the Options button to see if the macro has been assigned a shortcut key.

Here's a simple example macro you can add to a new workbook that will select A3 and Hide/Unhide rows 1 & 2 on the active sheet. After you install it, press Alt + F8, select the macro, press Options and assign the shortcut ctrl+c to run the macro.
Code:
Sub Test()
With ActiveSheet
    .Range("A3").Select
    .Rows("1:2").Hidden = Not .Rows("1:2").Hidden
End With

End Sub

That did it!! Thanks
 
Upvote 0

Forum statistics

Threads
1,214,614
Messages
6,120,519
Members
448,968
Latest member
Ajax40

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top