Hi,
Let say I have a list of keywords to search in Excel like below (more than 20)
Milk,Apple,Meat,Money, Phone,Parking , Car,TV,Sign,Laptop (...)
If I find a cell with one of this keyword I need to highlight the column where its belong too. Sometimes one column can have multiple keywords.
I wanted to know if there is an easy way to do this task without using Ctrl + F for each keyword.
I m trying to use a conditional formatting "to highlight cell when text contain" and I have added this formula:
But it's too long (Excel can only 250 characters) and my file crashed and also I still have to highlight manually the columns.
I have try to use this macro but It's not quiet what I'm looking for :
Let say I have a list of keywords to search in Excel like below (more than 20)
Milk,Apple,Meat,Money, Phone,Parking , Car,TV,Sign,Laptop (...)
If I find a cell with one of this keyword I need to highlight the column where its belong too. Sometimes one column can have multiple keywords.
I wanted to know if there is an easy way to do this task without using Ctrl + F for each keyword.
I m trying to use a conditional formatting "to highlight cell when text contain" and I have added this formula:
Code:
=OR($A$2:$DP$1516="Milk",
$A$2:$DP$1516="Apple",
$A$2:$DP$1516="Meat",
$A$2:$DP$1516="Money",
$A$2:$DP$1516="Phone",
$A$2:$DP$1516="Parking ",
$A$2:$DP$1516="Car",
$A$2:$DP$1516="TV",
$A$2:$DP$1516="Sign",
$A$2:$DP$1516="Laptop")
But it's too long (Excel can only 250 characters) and my file crashed and also I still have to highlight manually the columns.
I have try to use this macro but It's not quiet what I'm looking for :
HTML:
https://www.mrexcel.com/forum/excel-questions/145696-find-records-put-into-summary-sheet-solved.html