L Lasantha Member Oct 2, 2018 #1 Dear Team, Could you please help me to capture account number which between "Default Account" and "Class". I need numeric number between those words. See the attached template. Thank you. Lasantha. Attachments Test 2.xlsx 8.8 KB · Views: 15
Dear Team, Could you please help me to capture account number which between "Default Account" and "Class". I need numeric number between those words. See the attached template. Thank you. Lasantha.
John Jairo V Well-Known Member Oct 2, 2018 #2 Hi, Lasantha! You could try this formula: [A2] : =-LOOKUP(1,-MID(A2,2+FIND(":",A2),ROW($1:$99))) Blessings!
Hi, Lasantha! You could try this formula: [A2] : =-LOOKUP(1,-MID(A2,2+FIND(":",A2),ROW($1:$99))) Blessings!
L Lasantha Member Oct 2, 2018 #3 John Jairo V said: Hi, Lasantha! You could try this formula: [A2] : =-LOOKUP(1,-MID(A2,2+FIND(":",A2),ROW($1:$99))) Blessings! Click to expand... Thank you very much John
John Jairo V said: Hi, Lasantha! You could try this formula: [A2] : =-LOOKUP(1,-MID(A2,2+FIND(":",A2),ROW($1:$99))) Blessings! Click to expand... Thank you very much John
B bosco_yip Excel Ninja Oct 2, 2018 #4 Or, =--MID(A2,FIND(":",A2)+2,FIND("Cl",A2)-FIND(":",A2)-3) Regards Bosco
L Lasantha Member Oct 3, 2018 #5 bosco_yip said: Or, =--MID(A2,FIND(":",A2)+2,FIND("Cl",A2)-FIND(":",A2)-3) Regards Bosco Click to expand... Thank you Bosco.
bosco_yip said: Or, =--MID(A2,FIND(":",A2)+2,FIND("Cl",A2)-FIND(":",A2)-3) Regards Bosco Click to expand... Thank you Bosco.
N NPOKALA New Member Oct 10, 2018 #6 =MID(A2,((FIND(":",A2,5))+2),(FIND(" ",A2,((FIND(":",A2,5))+2)))-(FIND(":",A2,5))-2)