Hello kind people of this forum. I have to do a substantial amount of data analysis for my master thesis and I am kind of getting stuck. I hope you will be able to help me with this issue. Ill give an example which is not actually in my thesis but a little easier to explain:
-The first row contains a database of cars. Each cell has three data values separated by commas: the brand, colour and year it was manufactured. e.g. "Toyota, green, 1998"
-It is a big database, like 10000 cars.
-In the second row I want to return a different value if the cell contains a certain type of car. For instance I want the country the car was manufactured in. Eg. if 'Toyota' is found return 'Japan'. If 'Citroen' is found, return 'France' and if 'Porsche' is found, return 'Germany'.
Normally I do this with the FIND function:
=IF(ISNUMBER(FIND("Toyora",A1)),"true","false")
...but now I have to search for multiple substrings and I want to use a single formula to extend to all of the cells.
Anyone helping me is advancing science! Thanks in advance.
-The first row contains a database of cars. Each cell has three data values separated by commas: the brand, colour and year it was manufactured. e.g. "Toyota, green, 1998"
-It is a big database, like 10000 cars.
-In the second row I want to return a different value if the cell contains a certain type of car. For instance I want the country the car was manufactured in. Eg. if 'Toyota' is found return 'Japan'. If 'Citroen' is found, return 'France' and if 'Porsche' is found, return 'Germany'.
Normally I do this with the FIND function:
=IF(ISNUMBER(FIND("Toyora",A1)),"true","false")
...but now I have to search for multiple substrings and I want to use a single formula to extend to all of the cells.
Anyone helping me is advancing science! Thanks in advance.