So I have a question: Let's say I have 3 columns: Artists, Tracks, Sublabel in 2 sheets.
What I need is a function that searches for the value in the cell "tracks" in Sheet2 from Sheet1,
Once find the value we are looking for, I want it to check for any words that the cell "Artists" in sheet2 may match the words in the cell "Artists" from sheet1, if one of the words is a match then go ahead and get the value from cell "sublabel" in sheet1 to write in cell "sublabel" in sheet2.
(We do not wanna check for the exact string as the one in sheet2 as they may be slightly different having words in a different order and some missing, but usually they are separated either by a comma, fullstop, space or a short word like "ft.". "Tracks" cells will always have the same values/strings in both sheet tabs, but the "Tracks" may be by a different "Artist" that being why the "Artists" cell must contain at least one of the words from the other sheet.)
I've tried to use the following function but it's not doing exactly what we need though as we need a way to check if artist is correct but can't use exactly the same values to search:
=dget(Sheet1!A:C,"Sublabel",{"Artist","Track";A7:B7})
Hope someone can help us! Thanks!
dget
? If it wasn't because of the random words like "ft" or the commas, it would be very easy to do with functions. – JescanellasTools > Script editor
if there is a function nameddget
. If so, please edit your original question with the code in it. Otherwise we can work on a script to get rid of the random characters :) – Jescanellas=DGET()
definitely exists @Jescanellas, just look here for the documentation: support.google.com/docs/answer/3094148?hl=en – a-burge