+ Reply to Thread
Results 1 to 8 of 8

type in a different color

  1. #1
    GMed
    Guest

    type in a different color

    Is there anyway to set my font color to a specific color as I type? I want
    to make changes to cells and see what cells have been changed by the color of
    the font.
    I don't like the way the "track changes highlighting" prints out. Thanks!



  2. #2
    Marcelo
    Guest

    RE: type in a different color

    Hi GMed,

    try to use the TOOLS | CHANGES CONTROL

    Hope this helps
    regards from Brazil
    Marcelo

    "GMed" escreveu:

    > Is there anyway to set my font color to a specific color as I type? I want
    > to make changes to cells and see what cells have been changed by the color of
    > the font.
    > I don't like the way the "track changes highlighting" prints out. Thanks!
    >
    >


  3. #3
    GMed
    Guest

    RE: type in a different color

    I don't see that in my tools menu, is it an add in feature? Thanks!

    "Marcelo" wrote:

    > Hi GMed,
    >
    > try to use the TOOLS | CHANGES CONTROL
    >
    > Hope this helps
    > regards from Brazil
    > Marcelo
    >
    > "GMed" escreveu:
    >
    > > Is there anyway to set my font color to a specific color as I type? I want
    > > to make changes to cells and see what cells have been changed by the color of
    > > the font.
    > > I don't like the way the "track changes highlighting" prints out. Thanks!
    > >
    > >


  4. #4
    Marcelo
    Guest

    RE: type in a different color

    Sorry Gmed, as my excel is in portuguese, I'm just try to translate it, the
    correct is

    TOOLS | TRACK CHANGES

    Hope this helps
    regards from Brazil
    Marcelo

    "GMed" escreveu:

    > I don't see that in my tools menu, is it an add in feature? Thanks!
    >
    > "Marcelo" wrote:
    >
    > > Hi GMed,
    > >
    > > try to use the TOOLS | CHANGES CONTROL
    > >
    > > Hope this helps
    > > regards from Brazil
    > > Marcelo
    > >
    > > "GMed" escreveu:
    > >
    > > > Is there anyway to set my font color to a specific color as I type? I want
    > > > to make changes to cells and see what cells have been changed by the color of
    > > > the font.
    > > > I don't like the way the "track changes highlighting" prints out. Thanks!
    > > >
    > > >


  5. #5
    Gord Dibben
    Guest

    Re: type in a different color

    Not "as you type" but you can use event code to change the font color when you
    hit the ENTER key

    This code operates on A1:C100 cell range.

    Private Sub Worksheet_Change(ByVal Target As Range)
    On Error GoTo ws_exit:
    Application.EnableEvents = False
    If Not Intersect(Target, Me.Range("A1:C100")) Is Nothing Then
    With Target
    If .Value <> "" Then
    Target.Font.ColorIndex = 3
    End If
    End With
    End If
    ws_exit:
    Application.EnableEvents = True
    End Sub

    Right-click on sheet tab and "View Code".

    Copy/Paste code into that sheet module.


    Gord Dibben MS Excel MVP

    On Mon, 19 Jun 2006 11:49:02 -0700, GMed <GMed@discussions.microsoft.com> wrote:

    >Is there anyway to set my font color to a specific color as I type? I want
    >to make changes to cells and see what cells have been changed by the color of
    >the font.
    >I don't like the way the "track changes highlighting" prints out. Thanks!
    >



  6. #6
    GMed
    Guest

    RE: type in a different color

    , Oh! Thanks, that does work to identify the cells I changed, but it prints
    out rather messy, so I'd rather track the changes by font color...

    "Marcelo" wrote:

    > Sorry Gmed, as my excel is in portuguese, I'm just try to translate it, the
    > correct is
    >
    > TOOLS | TRACK CHANGES
    >
    > Hope this helps
    > regards from Brazil
    > Marcelo
    >
    > "GMed" escreveu:
    >
    > > I don't see that in my tools menu, is it an add in feature? Thanks!
    > >
    > > "Marcelo" wrote:
    > >
    > > > Hi GMed,
    > > >
    > > > try to use the TOOLS | CHANGES CONTROL
    > > >
    > > > Hope this helps
    > > > regards from Brazil
    > > > Marcelo
    > > >
    > > > "GMed" escreveu:
    > > >
    > > > > Is there anyway to set my font color to a specific color as I type? I want
    > > > > to make changes to cells and see what cells have been changed by the color of
    > > > > the font.
    > > > > I don't like the way the "track changes highlighting" prints out. Thanks!
    > > > >
    > > > >


  7. #7
    GMed
    Guest

    Re: type in a different color

    THANKS! that is just what I wanted.

    "Gord Dibben" wrote:

    > Not "as you type" but you can use event code to change the font color when you
    > hit the ENTER key
    >
    > This code operates on A1:C100 cell range.
    >
    > Private Sub Worksheet_Change(ByVal Target As Range)
    > On Error GoTo ws_exit:
    > Application.EnableEvents = False
    > If Not Intersect(Target, Me.Range("A1:C100")) Is Nothing Then
    > With Target
    > If .Value <> "" Then
    > Target.Font.ColorIndex = 3
    > End If
    > End With
    > End If
    > ws_exit:
    > Application.EnableEvents = True
    > End Sub
    >
    > Right-click on sheet tab and "View Code".
    >
    > Copy/Paste code into that sheet module.
    >
    >
    > Gord Dibben MS Excel MVP
    >
    > On Mon, 19 Jun 2006 11:49:02 -0700, GMed <GMed@discussions.microsoft.com> wrote:
    >
    > >Is there anyway to set my font color to a specific color as I type? I want
    > >to make changes to cells and see what cells have been changed by the color of
    > >the font.
    > >I don't like the way the "track changes highlighting" prints out. Thanks!
    > >

    >
    >


  8. #8
    Gord Dibben
    Guest

    Re: type in a different color


    Thank you for the feedback.

    Gord


    On Tue, 20 Jun 2006 11:22:02 -0700, GMed <GMed@discussions.microsoft.com> wrote:

    >THANKS! that is just what I wanted.
    >
    >"Gord Dibben" wrote:
    >
    >> Not "as you type" but you can use event code to change the font color when you
    >> hit the ENTER key
    >>
    >> This code operates on A1:C100 cell range.
    >>
    >> Private Sub Worksheet_Change(ByVal Target As Range)
    >> On Error GoTo ws_exit:
    >> Application.EnableEvents = False
    >> If Not Intersect(Target, Me.Range("A1:C100")) Is Nothing Then
    >> With Target
    >> If .Value <> "" Then
    >> Target.Font.ColorIndex = 3
    >> End If
    >> End With
    >> End If
    >> ws_exit:
    >> Application.EnableEvents = True
    >> End Sub
    >>
    >> Right-click on sheet tab and "View Code".
    >>
    >> Copy/Paste code into that sheet module.
    >>
    >>
    >> Gord Dibben MS Excel MVP
    >>
    >> On Mon, 19 Jun 2006 11:49:02 -0700, GMed <GMed@discussions.microsoft.com> wrote:
    >>
    >> >Is there anyway to set my font color to a specific color as I type? I want
    >> >to make changes to cells and see what cells have been changed by the color of
    >> >the font.
    >> >I don't like the way the "track changes highlighting" prints out. Thanks!
    >> >

    >>
    >>


    Gord Dibben MS Excel MVP

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1