+ Reply to Thread
Results 1 to 7 of 7

Automatic partial formatting of text between certain values

Hybrid View

  1. #1
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,834

    Re: Automatic partial formatting of text between certain values

    try
    Private Sub Worksheet_Change(ByVal Target As Range)
        Dim r As Range, m As Object
        With CreateObject("VBScript.RegExp")
            .Global = True
            .Pattern = "<<.+?(?=>>)"
            For Each r In Target.Cells
                If .test(r.Value) Then
                    r.Font.Bold = False
                    r.Font.Italic = False
                    For Each m In .Execute(r.Value)
                        With r.Characters(m.firstindex + 3, m.Length - 2).Font
                            .Bold = True
                            .Italic = True
                        End With
                    Next
                End If
            Next
        End With
    End Sub

  2. #2
    Registered User
    Join Date
    05-01-2019
    Location
    Australia
    MS-Off Ver
    Office365
    Posts
    4

    Re: Automatic partial formatting of text between certain values

    Thank you!
    I am looking to include the angled brackets in the formatting as well (so that the text and the brackets both have the formatting applied). How would I get those brackets included?

    If I wanted to change colour, I was doing that by adding a line at row 14 like:
    .Color = Red
    But this wasn't working. What is the colour parameter?
    Last edited by schjacob; 05-07-2019 at 02:23 AM. Reason: Accidentally hit post too soon!

+ 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. Conditional Formatting with Partial Text Match
    By randolaw in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 08-31-2018, 04:30 PM
  2. Conditional Formatting that contain text and partial
    By nathanexcelhelp in forum Excel General
    Replies: 4
    Last Post: 02-17-2017, 09:26 AM
  3. Conditional Formatting: Matching Partial Text
    By Alan_Bernardo in forum Excel General
    Replies: 1
    Last Post: 01-07-2017, 02:23 PM
  4. [SOLVED] Conditional Formatting based on partial/specific text to highlight entire row
    By bizdevdfw in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 05-18-2016, 04:32 PM
  5. Conditional formatting based on search of partial text column
    By SirBrock in forum Excel Formulas & Functions
    Replies: 10
    Last Post: 12-12-2015, 09:49 AM
  6. [SOLVED] Conditional Formatting Partial Currency Values in One Column
    By bmann021 in forum Excel General
    Replies: 9
    Last Post: 08-27-2015, 11:40 AM
  7. Replies: 11
    Last Post: 02-04-2015, 01:34 PM

Tags for this Thread

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