I have the following values
animal_cat
dog_bone_husky
i want to get only the second text after the first underscore
in this case i only want to get cat for B1
and bone for B2
im using this formula
=TRIM(MID(A2,FIND("_",SUBSTITUTE(A2,",","_",3))+1,255))
the problem is for my second row it also gets all the text after the first delimiter in this case it shows bone_husky
is there a way to only get the second text?