• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Highligted special character word Ex:(sa?s)

Sarankbm

New Member
Hi Friends,

i have write a word one column one by one.in string between one special character ex: sa?ran, arun/kumar.
i will be highligted that word .what kind of VBA code used. FYI Please find attached to the file
 

Attachments

  • Example.xlsx
    9.5 KB · Views: 4
Try to use Conditional Formatting as in :

upload_2017-6-14_1-21-2.png

Select A1:A100 >> Conditional Formatting >> New rule >> Use a formula >> formula :

=OR(MID(A2,ROW(INDIRECT("1:"&LEN(A2))),1)<"a")

>> Format >> cell font color choose "red" >> OK

Regards
Bosco
 
Last edited:
Back
Top