Hello!
I have a problem with formula. I Have two tables. Main and support. Support looks like t
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Symbol[/TD]
[TD]Crit[/TD]
[TD]FullName[/TD]
[/TR]
[TR]
[TD]One_Some_dn_1_[/TD]
[TD]mas[/TD]
[TD]SOME NAME 1[/TD]
[/TR]
[TR]
[TD]One_Some_dn_11_[/TD]
[TD]mid[/TD]
[TD]SOME NAME 2[/TD]
[/TR]
[TR]
[TD]Lik_mo_[/TD]
[TD]mid[/TD]
[TD]SOME NAME 3[/TD]
[/TR]
[TR]
[TD]oper_nand_[/TD]
[TD]mid[/TD]
[TD]SOME NAME 4[/TD]
[/TR]
[TR]
[TD]oper_nand_ODK_[/TD]
[TD]mas[/TD]
[TD]SOME NAME 5[/TD]
[/TR]
[TR]
[TD]One_Some_dn_[/TD]
[TD]app[/TD]
[TD]SOME NAME 6[/TD]
[/TR]
[TR]
[TD]etc[/TD]
[TD]etc[/TD]
[TD]etc[/TD]
[/TR]
</tbody>[/TABLE]
Main looks like this
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Crit[/TD]
[TD]FullName[/TD]
[TD]FILE TO GET[/TD]
[/TR]
[TR]
[TD]mass[/TD]
[TD]SOME NAME 5[/TD]
[TD]oper_nand_ODK_2017_Eng_stig[/TD]
[/TR]
[TR]
[TD]mass[/TD]
[TD]SOME NAME 5[/TD]
[TD]oper_nand_ODK_2018_nna[/TD]
[/TR]
[TR]
[TD]mid[/TD]
[TD]SOME NAME 3[/TD]
[TD]Lik_mo_donar_rettin[/TD]
[/TR]
[TR]
[TD]mid[/TD]
[TD]SOME NAME 4[/TD]
[TD]oper_nand_LOKONTray[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
in my main table, in column "C" I will paste some filenames. I want to fill columns A and B automatically base on column C. First part of a file has the same name as Symbol in support table. I like excel to search if any of the symbol strings match my file and if so, copy FullName to column B of main table. Than I need to check full name with Crit column and copy adequate crit to main column.
My formula so far for FullName column of main table:
=if(D2<>"",
LOOKUP(1E+100,
FIND('SUPPOERT TABLE'!$A$2:$A$119,D2),
'SUPPORT TABLE'!$C$2:$C$119),"")
and it is 99% accurate. - that is not acceptable. This formula has problem with "oper_nand_ODK_" and "oper_nand_" as I can tell but I havent check all 120 possibilities.
Please help.
Best Regards
W.
I have a problem with formula. I Have two tables. Main and support. Support looks like t
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Symbol[/TD]
[TD]Crit[/TD]
[TD]FullName[/TD]
[/TR]
[TR]
[TD]One_Some_dn_1_[/TD]
[TD]mas[/TD]
[TD]SOME NAME 1[/TD]
[/TR]
[TR]
[TD]One_Some_dn_11_[/TD]
[TD]mid[/TD]
[TD]SOME NAME 2[/TD]
[/TR]
[TR]
[TD]Lik_mo_[/TD]
[TD]mid[/TD]
[TD]SOME NAME 3[/TD]
[/TR]
[TR]
[TD]oper_nand_[/TD]
[TD]mid[/TD]
[TD]SOME NAME 4[/TD]
[/TR]
[TR]
[TD]oper_nand_ODK_[/TD]
[TD]mas[/TD]
[TD]SOME NAME 5[/TD]
[/TR]
[TR]
[TD]One_Some_dn_[/TD]
[TD]app[/TD]
[TD]SOME NAME 6[/TD]
[/TR]
[TR]
[TD]etc[/TD]
[TD]etc[/TD]
[TD]etc[/TD]
[/TR]
</tbody>[/TABLE]
Main looks like this
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Crit[/TD]
[TD]FullName[/TD]
[TD]FILE TO GET[/TD]
[/TR]
[TR]
[TD]mass[/TD]
[TD]SOME NAME 5[/TD]
[TD]oper_nand_ODK_2017_Eng_stig[/TD]
[/TR]
[TR]
[TD]mass[/TD]
[TD]SOME NAME 5[/TD]
[TD]oper_nand_ODK_2018_nna[/TD]
[/TR]
[TR]
[TD]mid[/TD]
[TD]SOME NAME 3[/TD]
[TD]Lik_mo_donar_rettin[/TD]
[/TR]
[TR]
[TD]mid[/TD]
[TD]SOME NAME 4[/TD]
[TD]oper_nand_LOKONTray[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
in my main table, in column "C" I will paste some filenames. I want to fill columns A and B automatically base on column C. First part of a file has the same name as Symbol in support table. I like excel to search if any of the symbol strings match my file and if so, copy FullName to column B of main table. Than I need to check full name with Crit column and copy adequate crit to main column.
My formula so far for FullName column of main table:
=if(D2<>"",
LOOKUP(1E+100,
FIND('SUPPOERT TABLE'!$A$2:$A$119,D2),
'SUPPORT TABLE'!$C$2:$C$119),"")
and it is 99% accurate. - that is not acceptable. This formula has problem with "oper_nand_ODK_" and "oper_nand_" as I can tell but I havent check all 120 possibilities.
Please help.
Best Regards
W.