VBA code change and recognize text

Excelnewcomer23

New Member
Joined
May 3, 2021
Messages
7
Office Version
  1. 2013
Platform
  1. Windows
Hi guys, i need some help with word VBA.

I have text in a bullet point form on my word doc and i would like to have certain things be done, when i run a macro. I am fairly new to VBA, therefore struggling with the coding aspect.

Here is the text in m word doc:
  • Tsla is up by 23% as compared to April
  • FLT is down by -52%, AAPL is up by 4%, BB is up by 183%, SNDL is down by -37% and AMZN is up by 39% as compared to April
  • WELL is up by 67% - Doge is down by -73%, KOSS is down by -14% and MSFT is up by 26% as compared to April.
I have jotted down in bullet point form and in the order i hope the code runs in.
  1. I would like the macro start where it says any of the stocks tickers, whether it's at the beginning of the line or in the middle. For ex: "Tsla" ,"FLT", "SNDL".
  2. I would like the macro to turn any text that indicates "down" to turn red and "up" green only up until the % sign. For ex: " Tsla is up by 23% as compared to April" , "FLT is down by -52%".
I would like the code to run all of the above simultaneously , such as recognizing the ticker symbols, moving between lines/bullet points, turning text red or green depending on the "down" and "up" word.

Thank you so much guys for any assistance you can provide on this matter.

CHEERS!
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Try this:
VBA Code:
Sub GreenRed()
    Dim rSearch As Range, rFound As Range
    Dim UpDown(1) As String
    Dim Colors(1) As Integer
    Dim i As Integer
    
    UpDown(0) = "[A-z]@ is up by [0-9]@%"
    UpDown(1) = "[A-z]@ is down by ?@%"
    Colors(0) = wdGreen
    Colors(1) = wdRed
    
    For i = 0 To 1
        Set rSearch = ActiveDocument.Range.Duplicate
        Set rFound = rSearch.Duplicate
        rFound.Find.Execute FindText:=UpDown(i), MatchWildcards:=True
        Do While rFound.Find.Found
            rFound.Font.ColorIndex = Colors(i)
            rSearch.Start = rFound.End
            Set rFound = rSearch.Duplicate
            rFound.Find.Execute FindText:=UpDown(i), MatchWildcards:=True
        Loop
    Next i
End Sub
 
Upvote 0
Solution
First of all the code works just fine. Thank you for that!

I have another issue where I have certain words that have a dash between them. For ex: “ST - hardship”. While using the same code , how do I make sure the code captures the words before the dash as well.

Thanks again for your assistance!
 
Upvote 0
Can you clarify? Does “ST - hardship” have anything to do with whether the stock is up or down (and should therefore be red or green)? Provide an example of where it fits in the text and what should be done with it.
 
Upvote 0
It doesn’t have anything to do with the stocks directly. It is a part of the text, where I would mention some stocks and if it has increased or decreased. In the same manner, I would also mention if the hardship has decreased or Increased over time . And yes it would have to be red or green, so if the “st- hardship” has increased then it would be green and if it has decreased then it would be red. For ex: Tsla is down by 23% - “ST-Hardship is up by 8% since April”. This would be red and it has gone up then it would be green.
 
Upvote 0
I added a space and a dash in the brackets as additional characters. The space is included because you had spaces around the dash in your comment #3 above, but in #5, it doesn't have a space. It doesn't matter except that with including the space, more text is selected. For example, using your original text "- Doge is down by -73%" is red and includes the dash; "and MSFT is up by 26%" is green including the "and". If the space isn't there in the actual name like in #5, then removing the spaces from UpDown will not make the dash of Doge and the "and" of MSFT red and green.

Also, you might notice that the original code creates a bunch of undo items. If you wanted to undo all of the coloring, you'd have to click a bunch. I've updated the code so that a single undo item is created that will undo all coloring affected by this procedure in one go. You can change its name if you want.

VBA Code:
Sub GreenRed()
    Dim rSearch As Range, rFound As Range
    Dim UpDown(1) As String
    Dim Colors(1) As Integer
    Dim i As Integer
    Dim ur As UndoRecord
    
    Set ur = Application.UndoRecord
    ur.StartCustomRecord "Make green-red"
    
    UpDown(0) = "[A-z -]@ is up by [0-9]@%"
    UpDown(1) = "[A-z -]@ is down by ?@%"
    Colors(0) = wdGreen
    Colors(1) = wdRed
    
    For i = 0 To 1
        Set rSearch = ActiveDocument.Range.Duplicate
        Set rFound = rSearch.Duplicate
        rFound.Find.Execute FindText:=UpDown(i), MatchWildcards:=True
        Do While rFound.Find.Found
            rFound.Font.ColorIndex = Colors(i)
            rSearch.Start = rFound.End
            Set rFound = rSearch.Duplicate
            rFound.Find.Execute FindText:=UpDown(i), MatchWildcards:=True
        Loop
    Next i
    ur.EndCustomRecord
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,632
Messages
6,120,655
Members
448,975
Latest member
sweeberry

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top