Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 130
Default keyboard short cut for highlighting a field

is there a keyboard short cut or a way to create a shortcut to hightlight a
cell easily with a default or specific color.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default keyboard short cut for highlighting a field

None that I have ever heard of.

A macro with a shortcut key could do the trick

Sub color_it()
For Each cell In Selection
cell.Interior.ColorIndex = 3 'red
Next
End Sub

Assign a shortcut key combo.


Gord Dibben MS Excel MVP

On Thu, 17 Jan 2008 15:42:00 -0800, Cindy
wrote:

is there a keyboard short cut or a way to create a shortcut to hightlight a
cell easily with a default or specific color.


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default keyboard short cut for highlighting a field

Or do it all in one line:

Sub Color_it2()
Selection.Interior.ColorIndex = 3 'red
End sub

<vbg

Gord Dibben wrote:

None that I have ever heard of.

A macro with a shortcut key could do the trick

Sub color_it()
For Each cell In Selection
cell.Interior.ColorIndex = 3 'red
Next
End Sub

Assign a shortcut key combo.

Gord Dibben MS Excel MVP

On Thu, 17 Jan 2008 15:42:00 -0800, Cindy
wrote:

is there a keyboard short cut or a way to create a shortcut to hightlight a
cell easily with a default or specific color.


--

Dave Peterson
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 367
Default keyboard short cut for highlighting a field

If I have lots of cells to color, i color the first one and then
select the others and press Alt + Enter, which repeats the last
command, in that case coloring.

Maybe that helps you

Carlo

On Jan 18, 9:05*am, Gord Dibben <gorddibbATshawDOTca wrote:
None that I have ever heard of.

A macro with a shortcut key could do the trick

Sub color_it()
For Each cell In Selection
* * *cell.Interior.ColorIndex = 3 * 'red
Next
End Sub

Assign a shortcut key combo.

Gord Dibben *MS Excel MVP

On Thu, 17 Jan 2008 15:42:00 -0800, Cindy
wrote:



is there a keyboard short cut or a way to create a shortcut to hightlight a
cell easily with a default or specific color.- Hide quoted text -


- Show quoted text -


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default keyboard short cut for highlighting a field

As Dave Peterson points out in another message, this could be changed to do all
cells at once without the loop.

Sub color_it()
Selection.Interior.ColorIndex = 3 'red
End Sub


Gord

On Thu, 17 Jan 2008 16:05:06 -0800, Gord Dibben <gorddibbATshawDOTca wrote:

None that I have ever heard of.

A macro with a shortcut key could do the trick

Sub color_it()
For Each cell In Selection
cell.Interior.ColorIndex = 3 'red
Next
End Sub

Assign a shortcut key combo.


Gord Dibben MS Excel MVP

On Thu, 17 Jan 2008 15:42:00 -0800, Cindy
wrote:

is there a keyboard short cut or a way to create a shortcut to hightlight a
cell easily with a default or specific color.




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default keyboard short cut for highlighting a field

Geez

Now I'm chasing around to all my latest posts and advising OP's of your advice.

Again.......thanks

On Thu, 17 Jan 2008 18:21:36 -0600, Dave Peterson
wrote:

Or do it all in one line:

Sub Color_it2()
Selection.Interior.ColorIndex = 3 'red
End sub

<vbg

Gord Dibben wrote:

None that I have ever heard of.

A macro with a shortcut key could do the trick

Sub color_it()
For Each cell In Selection
cell.Interior.ColorIndex = 3 'red
Next
End Sub

Assign a shortcut key combo.

Gord Dibben MS Excel MVP

On Thu, 17 Jan 2008 15:42:00 -0800, Cindy
wrote:

is there a keyboard short cut or a way to create a shortcut to hightlight a
cell easily with a default or specific color.


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
Excel 2002 : Keyboard short cut for highlighting Mr. Low Excel Discussion (Misc queries) 2 September 4th 07 08:44 PM
Summary field highlighting. Bill Excel Discussion (Misc queries) 0 August 30th 06 10:39 PM
How do I change font size in Excel with keyboard short cuts? xtophsr Excel Discussion (Misc queries) 1 June 10th 06 10:57 PM
can you customize a keyboard short cut in excel? Sue Excel Discussion (Misc queries) 3 June 2nd 05 10:49 PM
whats the keyboard short cut for inserting a row in Excel Subin New Users to Excel 3 March 11th 05 04:24 PM


All times are GMT +1. The time now is 01:26 AM.

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

About Us

"It's about Microsoft Excel"