Return a text from a column given it exist in another column

Visitor

Hello,

 

I would like to return a text from column D given it exist in column A (like in column B).

The file i have has over 50k lines and the formulas witch search and find did not work due to complexity.

 

Attached a table like an example:

Column AColumn BColumn CColumn D
Document numberWhat it should be returnedReturn formulaExplanation
11 Invoice no 1 from 01.01.2021
23 Invoice no 3 from 03.04.2022
34 Invoice no 4 from 05.03.2021
410 Invoice no 10 from 05.03.2022
52 Invoice no 2 from 03.08.2021
66 Invoice no 6 from 05.02.2022
78 Invoice no 8 from 05.04.2020
830 Invoice no 30 from 05.03.2022
99 Invoice no 9 from 01.08.2022
107 

Invoice no 7 from 03.03.2022

 

Best regards,

Mihai

1 Reply

@Mihai_Milu 

How about in row 2:

 

=--MID(D2,12,FIND(" ",D2,12)-11)

 

Fill down.