Im trying to extract number from a given format lets say ABC-DEFG-HIJ but i ran into trouble. Anyone knows how to extract the given format in excel into 3 small numbers (ABC, DEFG and HIJ) based on "-" ??
As pointed out by few ppl, i have included excel code for extracting ABC, DEFG . I have trouble extracting HIJ
=LEFT(B4;FIND("-"; B4)-1) returns ABC
=MID(B4;FIND("-";B4)+1;FIND("-";B4;FIND("-";B4)+1)-FIND("-";B4)-1) returns DEFG,