+ Reply to Thread
Results 1 to 3 of 3

When cell value within range is changed, make cell bold

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    11-23-2015
    Location
    Yada, Wales
    MS-Off Ver
    Office 2013
    Posts
    176

    When cell value within range is changed, make cell bold

    See attached file.

    I am changing numbers/letters in a range. When I do that I would like to automatically have these changes in bold text.
    Also, when changing value to +1 in another cell, I want every numbers/letters in previous range to go from bold to regular text.
    Attached Files Attached Files

  2. #2
    Valued Forum Contributor bulina2k's Avatar
    Join Date
    11-20-2012
    Location
    Urziceni, Ialomita, Romania
    MS-Off Ver
    2019 and 365
    Posts
    867

    Re: When cell value within range is changed, make cell bold

    Put this code in the Worksheet_Change event :
    Private Sub Worksheet_Change(ByVal Target As Range)
    
    If Not Intersect(Target, Range("E10:H1048576")) Is Nothing Then
        Target.Font.Bold = True
    Else: If Target.Address = "$A$5" Then Range("E10:H1048576").Font.Bold = False
    End If
    
    End Sub
    Or see the attached file.
    Attached Files Attached Files
    .. and don't forget to have fun!
    Bogdan.

    mark SOLVED and Add Reputation if my answer pleases you

  3. #3
    Forum Contributor
    Join Date
    11-23-2015
    Location
    Yada, Wales
    MS-Off Ver
    Office 2013
    Posts
    176

    Re: When cell value within range is changed, make cell bold

    Seems like it works perfectly, thank you so much!

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] How to make one cell bold & color ????
    By BRout in forum Excel General
    Replies: 9
    Last Post: 01-13-2016, 07:55 AM
  2. [SOLVED] How to make part of the text in a cell bold
    By aymanzone in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 08-14-2012, 05:26 AM
  3. How to make some text in a Cell Bold?
    By v2jtb in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 04-29-2012, 11:00 AM
  4. How to make cell value bold along with other data
    By vdongen in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 10-04-2010, 08:54 AM
  5. How does one make a cell font bold
    By gamaz in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 07-31-2009, 09:48 AM
  6. Replies: 4
    Last Post: 03-28-2005, 01:06 AM
  7. What funtion does can make one cell bold IF it equals another cell
    By odditie in forum Excel Formulas & Functions
    Replies: 16
    Last Post: 01-08-2005, 07:08 PM

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