• 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.

Find & highlight that cell

Abhijeet

Active Member
Hi

I have macro to find word & highlight that but i want if find then Column P Find mention in that row. Please tell me how to do this
 

Attachments

  • Find Highlight.xlsm
    15.6 KB · Views: 11
Hi Abhijeet,

There are two ways to do this. assumption here the search text "UA" is in cell P1 then use the search function to list it
=IFERROR(SEARCH(P1;B2;1);"")

or if you want to count the number of occurrence use the following
=IFERROR(LOOKUP(2;1/SEARCH(B2:O2;P1);B2:O2);"")

hope this helps.

Kind regards,
A!
 
Back
Top