I would really appreciate if someone could help me with this.
I have a file in Google Sheets with one column that could have information in there like this:
piktogramm_ghs02.jpg,piktogramm_ghs07.jpg,
piktogramm_ghs08.jpg,
piktogramm_ghs09.jpg
I want to check if that field contains "02" and if thats the case, I want to fill another column with "02". I got this working like this
=IFS(REGEXMATCH(BC2; "02"); "02"; REGEXMATCH(BC2; "07"); "07"; REGEXMATCH(BC2; "08"); "08")
but it stops checking if it found one matching result.
Is there a way to make a comma-separated list from all pictures like this?
02,07,08,09
Any help would be appreciated :-)