Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 54
Default Selecting rows with keyboard

I do most my excel work without my mouse however I cannot seem to find a way
to select rows and delete them without using it. I can select the contents of
the entire row but cannot delete the row itself. I know it sounds lazy but it
would save time. Any suggestions would be appreciated.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 638
Default Selecting rows with keyboard

On Sep 20, 12:06 am, Scott R wrote:
I do most my excel work without my mouse however I cannot seem to find a way
to select rows and delete them without using it. I can select the contents of
the entire row but cannot delete the row itself. I know it sounds lazy but it
would save time. Any suggestions would be appreciated.


To my knowledge, there isn't a way to delete an entire row and cause
the following rows to shift up using the keyboard. But, you could
create your own macro and assign it to a shortcut key.
Sub this()
' Keyboard Shortcut: Ctrl+y
'
Selection.EntireRow.Delete Shift:=xlUp
End Sub

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 54
Default Selecting rows with keyboard

PERFECT!

Thankyou :)

"JW" wrote:

On Sep 20, 12:06 am, Scott R wrote:
I do most my excel work without my mouse however I cannot seem to find a way
to select rows and delete them without using it. I can select the contents of
the entire row but cannot delete the row itself. I know it sounds lazy but it
would save time. Any suggestions would be appreciated.


To my knowledge, there isn't a way to delete an entire row and cause
the following rows to shift up using the keyboard. But, you could
create your own macro and assign it to a shortcut key.
Sub this()
' Keyboard Shortcut: Ctrl+y
'
Selection.EntireRow.Delete Shift:=xlUp
End Sub


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,202
Default Selecting rows with keyboard

To my knowledge, there isn't a way to delete an entire row
and cause the following rows to shift up using the keyboard.


To select the entire row, hit the Home key, then press and hold the Shift
key while you press End Key, Shift+<RightArrow, End Key, Shift+<RightArrow
(yes, you appear to need to do it twice). Now that the row is selected,
press and hold the Alt Key while you press the 'E' Key followed by the 'D'
Key.

Rick

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 611
Default Selecting rows with keyboard

Scott,

Shift - Spacebar will select the row. Shift - Down will select additional rows. Ctrl -
minus will delete the row(s). That's a true delete, which will shift rows up. Or use
Delete to clear the row.

--
Regards from Virginia Beach,

Earl Kiosterud
www.smokeylake.com

Note: Top-posting has been the norm here.
Some folks prefer bottom-posting.
But if you bottom-post to a reply that's
already top-posted, the thread gets messy.
When in Rome...
-----------------------------------------------------------------------
"Scott R" wrote in message
...
I do most my excel work without my mouse however I cannot seem to find a way
to select rows and delete them without using it. I can select the contents of
the entire row but cannot delete the row itself. I know it sounds lazy but it
would save time. Any suggestions would be appreciated.





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 47
Default Selecting rows with keyboard

tnx earl...vry hlpful indeed..

"Earl Kiosterud" wrote:

Scott,

Shift - Spacebar will select the row. Shift - Down will select additional rows. Ctrl -
minus will delete the row(s). That's a true delete, which will shift rows up. Or use
Delete to clear the row.

--
Regards from Virginia Beach,

Earl Kiosterud
www.smokeylake.com

Note: Top-posting has been the norm here.
Some folks prefer bottom-posting.
But if you bottom-post to a reply that's
already top-posted, the thread gets messy.
When in Rome...
-----------------------------------------------------------------------
"Scott R" wrote in message
...
I do most my excel work without my mouse however I cannot seem to find a way
to select rows and delete them without using it. I can select the contents of
the entire row but cannot delete the row itself. I know it sounds lazy but it
would save time. Any suggestions would be appreciated.




  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default Selecting rows with keyboard

Try looking up "keyboard shortcuts" in Excel's help.
--
David Biddulph

"Scott R" wrote in message
...
I do most my excel work without my mouse however I cannot seem to find a
way
to select rows and delete them without using it. I can select the contents
of
the entire row but cannot delete the row itself. I know it sounds lazy but
it
would save time. Any suggestions would be appreciated.



  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 638
Default Selecting rows with keyboard

On Sep 20, 2:23 am, "Earl Kiosterud" wrote:
Scott,

Shift - Spacebar will select the row. Shift - Down will select additional rows. Ctrl -
minus will delete the row(s). That's a true delete, which will shift rows up. Or use
Delete to clear the row.

--
Regards from Virginia Beach,

Earl Kiosterudwww.smokeylake.com

Note: Top-posting has been the norm here.
Some folks prefer bottom-posting.
But if you bottom-post to a reply that's
already top-posted, the thread gets messy.
When in Rome...
-----------------------------------------------------------------------"Scott R" wrote in message

...

I do most my excel work without my mouse however I cannot seem to find a way
to select rows and delete them without using it. I can select the contents of
the entire row but cannot delete the row itself. I know it sounds lazy but it
would save time. Any suggestions would be appreciated.


Thanks for that Earl. I didn't know about the Ctrl + - shortcut.

  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Selecting rows with keyboard

Just to add to Earl's shortcut...
ctrl-spacebar will select the entire column.



Earl Kiosterud wrote:

Scott,

Shift - Spacebar will select the row. Shift - Down will select additional rows. Ctrl -
minus will delete the row(s). That's a true delete, which will shift rows up. Or use
Delete to clear the row.

--
Regards from Virginia Beach,

Earl Kiosterud
www.smokeylake.com

Note: Top-posting has been the norm here.
Some folks prefer bottom-posting.
But if you bottom-post to a reply that's
already top-posted, the thread gets messy.
When in Rome...
-----------------------------------------------------------------------
"Scott R" wrote in message
...
I do most my excel work without my mouse however I cannot seem to find a way
to select rows and delete them without using it. I can select the contents of
the entire row but cannot delete the row itself. I know it sounds lazy but it
would save time. Any suggestions would be appreciated.


--

Dave Peterson
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
Keyboard Shorcut for selecting Trying2Learn New Users to Excel 3 January 7th 08 03:01 PM
Keyboard shortcut or selecting entire column Precious_Stone Excel Worksheet Functions 2 July 18th 06 05:37 PM
Selecting and moving chart(s) within a worksheet using keyboard ke xppuser Charts and Charting in Excel 1 February 28th 06 11:38 AM
What is the keyboard shortcut for selecting worksheets in Excel? Southwest Scott Excel Discussion (Misc queries) 2 September 13th 05 11:46 PM
What is the keyboard shortcut for selecting worksheets in Excel? Ray A Excel Discussion (Misc queries) 0 September 13th 05 10:42 PM


All times are GMT +1. The time now is 02:08 PM.

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"