macro that will change the font of a cell if i change a value

  • Thread starter Thread starter jk
  • Start date Start date
J

jk

Does someone know how to create a macro that waits for changes in any cell
and when this occurs change the font of that cell?
 
That's possible.

For instance, copy-paste this code in the private module of the sheet where
you want to apply it:


Private Sub Worksheet_Change(ByVal Target As Range)

Target.Cells.Font.Name = "..."

End Sub


Fill in the desired font name and you can of course use other properties of
the target range as well. (bold, font size, alignment, and many others).
 
Do you need it to be a macro?

Conditional Formatting would work as well.


Gord Dibben MS Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top