Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 19
Default shortcut for Highlight cell

Is there any keyboard shortcut to highlight current cell?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 31
Default shortcut for Highlight cell

No. But you can Save a Macro with a shortkey ctrl+q for example.

"Samad" wrote:

Is there any keyboard shortcut to highlight current cell?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default shortcut for Highlight cell

You may want to try Chip Pearson's Rowliner:
http://www.cpearson.com/excel/RowLiner.htm


Samad wrote:

Is there any keyboard shortcut to highlight current cell?


--

Dave Peterson
  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 19
Default shortcut for Highlight cell

Ashkan

will this macro be available in all excel files? as I want to frequently use
of this command.

Thanks for reply

"Ashkan" wrote:

No. But you can Save a Macro with a shortkey ctrl+q for example.

"Samad" wrote:

Is there any keyboard shortcut to highlight current cell?

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 19
Default shortcut for Highlight cell

Dear Dave

rowliner is to identify the cell position but I want to keyboard shorcut to
highlight something. hope you understand my problem

Thanks Guru

"Dave Peterson" wrote:

You may want to try Chip Pearson's Rowliner:
http://www.cpearson.com/excel/RowLiner.htm


Samad wrote:

Is there any keyboard shortcut to highlight current cell?


--

Dave Peterson



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default shortcut for Highlight cell

I understand your problem.

I guess you could record a macro that changed the fill color of the activecell
and assign it to a keyboard shortcut.

But remember to turn off the fill color when you change cells and it could be a
pain if you shaded other cells you don't want to change.

I don't have any other good solution for you.

Samad wrote:

Dear Dave

rowliner is to identify the cell position but I want to keyboard shorcut to
highlight something. hope you understand my problem

Thanks Guru

"Dave Peterson" wrote:

You may want to try Chip Pearson's Rowliner:
http://www.cpearson.com/excel/RowLiner.htm


Samad wrote:

Is there any keyboard shortcut to highlight current cell?


--

Dave Peterson


--

Dave Peterson
  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 19
Default shortcut for Highlight cell

Thanks Dave but one more thing I record a macro and copied it to my
personal.xla for use in all files, it works fine through a toolbar button but
I'm unable to create a keyboard shortcut, is anything I'm missing? please
guide.

thanks

"Dave Peterson" wrote:

I understand your problem.

I guess you could record a macro that changed the fill color of the activecell
and assign it to a keyboard shortcut.

But remember to turn off the fill color when you change cells and it could be a
pain if you shaded other cells you don't want to change.

I don't have any other good solution for you.

Samad wrote:

Dear Dave

rowliner is to identify the cell position but I want to keyboard shorcut to
highlight something. hope you understand my problem

Thanks Guru

"Dave Peterson" wrote:

You may want to try Chip Pearson's Rowliner:
http://www.cpearson.com/excel/RowLiner.htm


Samad wrote:

Is there any keyboard shortcut to highlight current cell?

--

Dave Peterson


--

Dave Peterson

  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default shortcut for Highlight cell

Tools|Macro|macros
select your macro from the list
Click on the Options button
assign your shortcut key there.

Remember to save the workbook with the macro (personal.xls) so you don't lose
your changes.

Samad wrote:

Thanks Dave but one more thing I record a macro and copied it to my
personal.xla for use in all files, it works fine through a toolbar button but
I'm unable to create a keyboard shortcut, is anything I'm missing? please
guide.

thanks

"Dave Peterson" wrote:

I understand your problem.

I guess you could record a macro that changed the fill color of the activecell
and assign it to a keyboard shortcut.

But remember to turn off the fill color when you change cells and it could be a
pain if you shaded other cells you don't want to change.

I don't have any other good solution for you.

Samad wrote:

Dear Dave

rowliner is to identify the cell position but I want to keyboard shorcut to
highlight something. hope you understand my problem

Thanks Guru

"Dave Peterson" wrote:

You may want to try Chip Pearson's Rowliner:
http://www.cpearson.com/excel/RowLiner.htm


Samad wrote:

Is there any keyboard shortcut to highlight current cell?

--

Dave Peterson


--

Dave Peterson


--

Dave Peterson
  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 19
Default shortcut for Highlight cell

Dave Sorry to bother you again, I saved all my macros to my personal.xla
(addins) so I'm unable to see my macros on tools|macro|macros, I tried
"Application.onkey" command but unsuccessful (codes pasted below), is any
other way or something else I'm missing?

Thanks

Sub highlight()
'
' highlight Macro
' Macro recorded 24-01-2007 by Abdul Samad
'
' Keyboard Shortcut: Ctrl+q

Application.OnKey "^q"
With Selection.Interior
.ColorIndex = 6
.Pattern = xlSolid
End With
End Sub


"Dave Peterson" wrote:

Tools|Macro|macros
select your macro from the list
Click on the Options button
assign your shortcut key there.

Remember to save the workbook with the macro (personal.xls) so you don't lose
your changes.

Samad wrote:

Thanks Dave but one more thing I record a macro and copied it to my
personal.xla for use in all files, it works fine through a toolbar button but
I'm unable to create a keyboard shortcut, is anything I'm missing? please
guide.

thanks

"Dave Peterson" wrote:

I understand your problem.

I guess you could record a macro that changed the fill color of the activecell
and assign it to a keyboard shortcut.

But remember to turn off the fill color when you change cells and it could be a
pain if you shaded other cells you don't want to change.

I don't have any other good solution for you.

Samad wrote:

Dear Dave

rowliner is to identify the cell position but I want to keyboard shorcut to
highlight something. hope you understand my problem

Thanks Guru

"Dave Peterson" wrote:

You may want to try Chip Pearson's Rowliner:
http://www.cpearson.com/excel/RowLiner.htm


Samad wrote:

Is there any keyboard shortcut to highlight current cell?

--

Dave Peterson


--

Dave Peterson


--

Dave Peterson

  #10   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default shortcut for Highlight cell

Don't use application.onkey inside your macro.

You could use your workbook_open or auto_open to assign the shortcut key to the
macro.

Option Explict
sub auto_Open()
application.onkey "^q", "'" & thisworkbook.name & "'!Highlight"
end sub
sub auto_Close()
application.onkey "^q"
end sub

But you don't need to do this, either.

You can still use that other technique (Tools|macro|macros|options).

But you have to type the name of the macro:
personal.xla!Highlight
in the "macro name" box.

Remember to save that addin, though.

(and still remove the application.onkey from the actual macro.)

Samad wrote:

Dave Sorry to bother you again, I saved all my macros to my personal.xla
(addins) so I'm unable to see my macros on tools|macro|macros, I tried
"Application.onkey" command but unsuccessful (codes pasted below), is any
other way or something else I'm missing?

Thanks

Sub highlight()
'
' highlight Macro
' Macro recorded 24-01-2007 by Abdul Samad
'
' Keyboard Shortcut: Ctrl+q

Application.OnKey "^q"
With Selection.Interior
.ColorIndex = 6
.Pattern = xlSolid
End With
End Sub

"Dave Peterson" wrote:

Tools|Macro|macros
select your macro from the list
Click on the Options button
assign your shortcut key there.

Remember to save the workbook with the macro (personal.xls) so you don't lose
your changes.

Samad wrote:

Thanks Dave but one more thing I record a macro and copied it to my
personal.xla for use in all files, it works fine through a toolbar button but
I'm unable to create a keyboard shortcut, is anything I'm missing? please
guide.

thanks

"Dave Peterson" wrote:

I understand your problem.

I guess you could record a macro that changed the fill color of the activecell
and assign it to a keyboard shortcut.

But remember to turn off the fill color when you change cells and it could be a
pain if you shaded other cells you don't want to change.

I don't have any other good solution for you.

Samad wrote:

Dear Dave

rowliner is to identify the cell position but I want to keyboard shorcut to
highlight something. hope you understand my problem

Thanks Guru

"Dave Peterson" wrote:

You may want to try Chip Pearson's Rowliner:
http://www.cpearson.com/excel/RowLiner.htm


Samad wrote:

Is there any keyboard shortcut to highlight current cell?

--

Dave Peterson


--

Dave Peterson


--

Dave Peterson


--

Dave Peterson


  #11   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 19
Default shortcut for Highlight cell

Thanks Dave, it works fine

"Dave Peterson" wrote:

Don't use application.onkey inside your macro.

You could use your workbook_open or auto_open to assign the shortcut key to the
macro.

Option Explict
sub auto_Open()
application.onkey "^q", "'" & thisworkbook.name & "'!Highlight"
end sub
sub auto_Close()
application.onkey "^q"
end sub

But you don't need to do this, either.

You can still use that other technique (Tools|macro|macros|options).

But you have to type the name of the macro:
personal.xla!Highlight
in the "macro name" box.

Remember to save that addin, though.

(and still remove the application.onkey from the actual macro.)

Samad wrote:

Dave Sorry to bother you again, I saved all my macros to my personal.xla
(addins) so I'm unable to see my macros on tools|macro|macros, I tried
"Application.onkey" command but unsuccessful (codes pasted below), is any
other way or something else I'm missing?

Thanks

Sub highlight()
'
' highlight Macro
' Macro recorded 24-01-2007 by Abdul Samad
'
' Keyboard Shortcut: Ctrl+q

Application.OnKey "^q"
With Selection.Interior
.ColorIndex = 6
.Pattern = xlSolid
End With
End Sub

"Dave Peterson" wrote:

Tools|Macro|macros
select your macro from the list
Click on the Options button
assign your shortcut key there.

Remember to save the workbook with the macro (personal.xls) so you don't lose
your changes.

Samad wrote:

Thanks Dave but one more thing I record a macro and copied it to my
personal.xla for use in all files, it works fine through a toolbar button but
I'm unable to create a keyboard shortcut, is anything I'm missing? please
guide.

thanks

"Dave Peterson" wrote:

I understand your problem.

I guess you could record a macro that changed the fill color of the activecell
and assign it to a keyboard shortcut.

But remember to turn off the fill color when you change cells and it could be a
pain if you shaded other cells you don't want to change.

I don't have any other good solution for you.

Samad wrote:

Dear Dave

rowliner is to identify the cell position but I want to keyboard shorcut to
highlight something. hope you understand my problem

Thanks Guru

"Dave Peterson" wrote:

You may want to try Chip Pearson's Rowliner:
http://www.cpearson.com/excel/RowLiner.htm


Samad wrote:

Is there any keyboard shortcut to highlight current cell?

--

Dave Peterson


--

Dave Peterson


--

Dave Peterson


--

Dave Peterson

  #12   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 9
Default shortcut for Highlight cell



"Samad" wrote:

Is there any keyboard shortcut to highlight current cell?

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
Sumproduct issues SteveDB1 Excel Worksheet Functions 25 June 3rd 09 04:58 PM
Shortcut to go a certain cell Art Excel Discussion (Misc queries) 3 December 1st 06 08:21 PM
Custom functions calculating time arguments Help Desperate Bill_De Excel Worksheet Functions 12 April 25th 06 02:22 AM
Possible Lookup Table Karen Excel Worksheet Functions 5 June 8th 05 09:43 PM
Copy cell format to cell on another worksht and update automatical kevinm Excel Worksheet Functions 21 May 19th 05 11:07 AM


All times are GMT +1. The time now is 05:05 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"