Hi,
I am trying to create a formula that will search for either a ">" or "_" and return the text after the 1st "_" or ">". In other words, how can I combine the below two formulas so that it searches for either "_" or ">".
formulas:
=MID($Z5,FIND(">",$Z5)+1,LEN($Z5))
=MID($Z5,FIND("_",$Z5)+1,LEN($Z5))
Text Examples:
us_Sales_Forms_test_en should return Sales_Forms_test_en
US>Sales>>>Forms>>survey should return "Sales>>>Forms>>survey
Thank you for any help that you can provide.
I am trying to create a formula that will search for either a ">" or "_" and return the text after the 1st "_" or ">". In other words, how can I combine the below two formulas so that it searches for either "_" or ">".
formulas:
=MID($Z5,FIND(">",$Z5)+1,LEN($Z5))
=MID($Z5,FIND("_",$Z5)+1,LEN($Z5))
Text Examples:
us_Sales_Forms_test_en should return Sales_Forms_test_en
US>Sales>>>Forms>>survey should return "Sales>>>Forms>>survey
Thank you for any help that you can provide.