View Single Post
 
Old 11-08-2020, 07:37 PM
Cendrinne's Avatar
Cendrinne Cendrinne is offline Windows 10 Office 2019
Competent Performer
 
Join Date: Aug 2019
Location: Montreal Quebec Canada
Posts: 200
Cendrinne is on a distinguished road
Default

ahhhhhh yes I see, and I do get many cells. This type of work, I do have 5-10,000 Rows.
That is a very logical answer. Thank you

I even created a macro to find the next cell that starts with highlight. and it works
Code:
Sub Find_Next_Start_Cell_w_Highlight()
'
'
    Selection.Find.ClearFormatting
    Selection.Find.Highlight = True
    With Selection.Find
        .Text = "<?"
        .Replacement.Text = ""
        .Forward = True
        .Wrap = wdFindAsk
        .Format = True
        .MatchCase = False
        .MatchWildcards = True
    End With
    Selection.Find.Execute
End Sub
Since I have so many rows, scrolling with the mouse makes my mouse scroller stop functionning, so this helps

I'm not a pro YET, but I do get better.

Thanks a million Paul
Reply With Quote