I don't know why I can't figure this out. I have the following text string in cell A2:
162780 162780 DECAL PUMP 5X4 7/16 DCL082B EA 750 750
I need to extract the last "750" and second to last "750" to separate cells. There is always a "EA" within the string before these counts (which are quantity ordered and quantity shipped). I have the formula: =MID($A2,SEARCH("EA",$A2)+3,3) to extract the "750" after "EA" right now, but the issue is that these counts are not always three digits, could be 1 - 4, always separated by a space. I know I need to insert additional formula instead of "+3" probably using SUBSTITUTE but I've searched and have hit a roadblock. Any help is tremendously appreciated and if anyone can point me to a good resource to learn more about LEFT, RIGHT, SUBSTITUTE, MID and LEN that would also be appreciated. Any suggested courses on the subject?
162780 162780 DECAL PUMP 5X4 7/16 DCL082B EA 750 750
I need to extract the last "750" and second to last "750" to separate cells. There is always a "EA" within the string before these counts (which are quantity ordered and quantity shipped). I have the formula: =MID($A2,SEARCH("EA",$A2)+3,3) to extract the "750" after "EA" right now, but the issue is that these counts are not always three digits, could be 1 - 4, always separated by a space. I know I need to insert additional formula instead of "+3" probably using SUBSTITUTE but I've searched and have hit a roadblock. Any help is tremendously appreciated and if anyone can point me to a good resource to learn more about LEFT, RIGHT, SUBSTITUTE, MID and LEN that would also be appreciated. Any suggested courses on the subject?