Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 88
Default change color font after updated

hi all,

i work with excel everyday, sometimes i forget which one i already changed
in that sheet.
i.e in column D, i have a values.
now every time i changes or update that column, the color of font will
change automatically maybe red, yellow or anything. at least i can know the
changed.

many thanks for ur help

reza
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 698
Default change color font after updated

You could try something like this. Might get you headed in the right
direction.

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column < 4 Then Exit Sub
Target.Interior.ColorIndex = 4
End Sub

HTH
Regards,
Howard

"reza" wrote in message
...
hi all,

i work with excel everyday, sometimes i forget which one i already changed
in that sheet.
i.e in column D, i have a values.
now every time i changes or update that column, the color of font will
change automatically maybe red, yellow or anything. at least i can know
the
changed.

many thanks for ur help

reza



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 698
Default change color font after updated

Hmmm, you said FONT not cell so try this.

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column < 4 Then Exit Sub
Target.Font.ColorIndex = 3 '4
End Sub

Regareds,
Howard

"reza" wrote in message
...
hi all,

i work with excel everyday, sometimes i forget which one i already changed
in that sheet.
i.e in column D, i have a values.
now every time i changes or update that column, the color of font will
change automatically maybe red, yellow or anything. at least i can know
the
changed.

many thanks for ur help

reza



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 88
Default change color font after updated

nice...work greats

thanks howard..



"L. Howard Kittle" wrote:

Hmmm, you said FONT not cell so try this.

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column < 4 Then Exit Sub
Target.Font.ColorIndex = 3 '4
End Sub

Regareds,
Howard

"reza" wrote in message
...
hi all,

i work with excel everyday, sometimes i forget which one i already changed
in that sheet.
i.e in column D, i have a values.
now every time i changes or update that column, the color of font will
change automatically maybe red, yellow or anything. at least i can know
the
changed.

many thanks for ur help

reza



.

  #5   Report Post  
Junior Member
 
Posts: 1
Default

Quote:
Originally Posted by reza View Post
nice...work greats

thanks howard..



"L. Howard Kittle" wrote:

Hmmm, you said FONT not cell so try this.

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column < 4 Then Exit Sub
Target.Font.ColorIndex = 3 '4
End Sub

Regareds,
Howard

"reza" wrote in message
...
hi all,

i work with excel everyday, sometimes i forget which one i already changed
in that sheet.
i.e in column D, i have a values.
now every time i changes or update that column, the color of font will
change automatically maybe red, yellow or anything. at least i can know
the
changed.

many thanks for ur help

reza



.
Hi I have never worked with excel before in terms of creating functions.So please bare with me.I think i have the similiar problem.I have an excel sheet that is attached to a word document which i use to generate reports and everytime the excel sheet gets updated I want the a specific column to change color if there were any change in it.

Please assist me.
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
Checkbox to change background color, font color and remove/ add bo Sara Excel Discussion (Misc queries) 2 May 1st 23 11:43 AM
Cannot change font color or cell color Bezell Excel Discussion (Misc queries) 2 January 30th 09 06:12 PM
change font color TGS New Users to Excel 2 June 22nd 08 10:22 AM
how can I conditionally change font color, or background color? MOHA Excel Worksheet Functions 3 August 21st 06 06:57 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 05:26 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"