Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 367
Default Hotkey for Font color change while editing cell.

Quick background: I use spreadsheets for action logs. From week to week, I
record what has changed from my last communication. I usually set the entire
cell to normal black unbolded. I add a line which has changed since last
communication and then set that new text to bold blue.

I want to find a way to use a hotkey to change my selected text to bold blue
without having to take my hands off the keyboard.

Is this possible?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 96
Default Hotkey for Font color change while editing cell.

go to tools, macro, and then choose record macro. in the pop up box you can
choose a key to use in the box next to "Ctrl+". once chosen, choose ok.

stop the macro from recording by hitting the stop button on the macro box
that appeared or by going to tools, macro, and choosing stop recording.

go into tools, macro, visual basic editor. to the left open the modules
folder, and double click on the module.

delete anything in between the green text and "End Sub" and paste this

With Selection
.Font.ColorIndex = 5
End With

save the sheet.

now any time you hit Ctrl+ your chosen key, the font should turn blue


"Jason" wrote:

Quick background: I use spreadsheets for action logs. From week to week, I
record what has changed from my last communication. I usually set the entire
cell to normal black unbolded. I add a line which has changed since last
communication and then set that new text to bold blue.

I want to find a way to use a hotkey to change my selected text to bold blue
without having to take my hands off the keyboard.

Is this possible?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 367
Default Hotkey for Font color change while editing cell.

This is a great idea, however, it does not seem that I can run macro's when
currently editing a cell. Is there an option in Excel 2007 that allows me to
run macros while in edit mode?

Thanks!

"joemeshuggah" wrote:

go to tools, macro, and then choose record macro. in the pop up box you can
choose a key to use in the box next to "Ctrl+". once chosen, choose ok.

stop the macro from recording by hitting the stop button on the macro box
that appeared or by going to tools, macro, and choosing stop recording.

go into tools, macro, visual basic editor. to the left open the modules
folder, and double click on the module.

delete anything in between the green text and "End Sub" and paste this

With Selection
.Font.ColorIndex = 5
End With

save the sheet.

now any time you hit Ctrl+ your chosen key, the font should turn blue


"Jason" wrote:

Quick background: I use spreadsheets for action logs. From week to week, I
record what has changed from my last communication. I usually set the entire
cell to normal black unbolded. I add a line which has changed since last
communication and then set that new text to bold blue.

I want to find a way to use a hotkey to change my selected text to bold blue
without having to take my hands off the keyboard.

Is this possible?

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Hotkey for Font color change while editing cell.

I think joem misunderstood your post.

He assumed your added text was in a cell by itself.

You are appending text to current text in a cell?

No option to allow macros while in edit mode.


Gord Dibben MS Excel MVP

On Fri, 29 Jan 2010 11:38:06 -0800, Jason
wrote:

This is a great idea, however, it does not seem that I can run macro's when
currently editing a cell. Is there an option in Excel 2007 that allows me to
run macros while in edit mode?

Thanks!

"joemeshuggah" wrote:

go to tools, macro, and then choose record macro. in the pop up box you can
choose a key to use in the box next to "Ctrl+". once chosen, choose ok.

stop the macro from recording by hitting the stop button on the macro box
that appeared or by going to tools, macro, and choosing stop recording.

go into tools, macro, visual basic editor. to the left open the modules
folder, and double click on the module.

delete anything in between the green text and "End Sub" and paste this

With Selection
.Font.ColorIndex = 5
End With

save the sheet.

now any time you hit Ctrl+ your chosen key, the font should turn blue


"Jason" wrote:

Quick background: I use spreadsheets for action logs. From week to week, I
record what has changed from my last communication. I usually set the entire
cell to normal black unbolded. I add a line which has changed since last
communication and then set that new text to bold blue.

I want to find a way to use a hotkey to change my selected text to bold blue
without having to take my hands off the keyboard.

Is this possible?


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 348
Default Hotkey for Font color change while editing cell.

On 1/29/2010 11:38 AM, Jason wrote:
This is a great idea, however, it does not seem that I can run macro's when
currently editing a cell. Is there an option in Excel 2007 that allows me to
run macros while in edit mode?

Thanks!

"joemeshuggah" wrote:

go to tools, macro, and then choose record macro. in the pop up box you can
choose a key to use in the box next to "Ctrl+". once chosen, choose ok.

stop the macro from recording by hitting the stop button on the macro box
that appeared or by going to tools, macro, and choosing stop recording.

go into tools, macro, visual basic editor. to the left open the modules
folder, and double click on the module.

delete anything in between the green text and "End Sub" and paste this

With Selection
.Font.ColorIndex = 5
End With

save the sheet.

now any time you hit Ctrl+ your chosen key, the font should turn blue


"Jason" wrote:

Quick background: I use spreadsheets for action logs. From week to week, I
record what has changed from my last communication. I usually set the entire
cell to normal black unbolded. I add a line which has changed since last
communication and then set that new text to bold blue.

I want to find a way to use a hotkey to change my selected text to bold blue
without having to take my hands off the keyboard.

Is this possible?


After editing, hit Enter, then up-arrow, then the macro hot key. That
should work without taking your fingers off the keyboard, which is what
you wanted in your original request.

Bill
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
Cannot change font color or cell color Bezell Excel Discussion (Misc queries) 2 January 30th 09 06:12 PM
Reg. Change of font color in a cell Ravi Excel Worksheet Functions 1 June 27th 08 10:07 AM
Change font color in cell Peggy Excel Discussion (Misc queries) 2 June 24th 08 04:30 PM
change default font color for editing/review AJB Excel Discussion (Misc queries) 6 July 27th 07 09:00 PM
How to change the default Border, Font Color, and Cell Color Elijah Excel Discussion (Misc queries) 3 November 2nd 05 11:52 PM


All times are GMT +1. The time now is 04:37 PM.

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"