Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
Dear all, do you think if use vlookup can work?
vlookup(table a desc, table b, 2 , true) i tried but cannot as both not exact map. even i use true also cannot. pls help! i think need to use additional function, right? can show me using vba lookup in different sheet? thanks alot. table a sheet 1 desc material price (return code here) SHELL PLATE SA516 50 21110 SHELL PLATE SA516 40 21110 SKIRT SUPPORT SA516 30 21130 FLANGES SA709 100 21180 GASKETS SA123 75 21520 GASKETS SA123 20 21520 table b sheet 2 desc code CARBON STEEL - SHELL PLATE 21110 CARBON STEEL - SKIRTS/SAD 21130 CARBON STEEL - PIPES 21140 CARBON STEEL - TUBE SHEET 21170 STAINLESS STEEL - FLANGES 21180 BOLTS/NUTS/GASKETS/SPARE 21520 |
#2
![]() |
|||
|
|||
![]() =VLOOKUP("*"&<table a desc&"*",table b, 2, true) On Thu, 28 Oct 2004 17:18:02 -0700, "mango" wrote: Dear all, do you think if use vlookup can work? vlookup(table a desc, table b, 2 , true) i tried but cannot as both not exact map. even i use true also cannot. pls help! i think need to use additional function, right? can show me using vba lookup in different sheet? thanks alot. table a sheet 1 desc material price (return code here) SHELL PLATE SA516 50 21110 SHELL PLATE SA516 40 21110 SKIRT SUPPORT SA516 30 21130 FLANGES SA709 100 21180 GASKETS SA123 75 21520 GASKETS SA123 20 21520 table b sheet 2 desc code CARBON STEEL - SHELL PLATE 21110 CARBON STEEL - SKIRTS/SAD 21130 CARBON STEEL - PIPES 21140 CARBON STEEL - TUBE SHEET 21170 STAINLESS STEEL - FLANGES 21180 BOLTS/NUTS/GASKETS/SPARE 21520 |
#3
![]() |
|||
|
|||
![]()
Dear Myrna,
you are great. can let me know how to put in vba? thanks alot. rgds "Myrna Larson" wrote: =VLOOKUP("*"&<table a desc&"*",table b, 2, true) On Thu, 28 Oct 2004 17:18:02 -0700, "mango" wrote: Dear all, do you think if use vlookup can work? vlookup(table a desc, table b, 2 , true) i tried but cannot as both not exact map. even i use true also cannot. pls help! i think need to use additional function, right? can show me using vba lookup in different sheet? thanks alot. table a sheet 1 desc material price (return code here) SHELL PLATE SA516 50 21110 SHELL PLATE SA516 40 21110 SKIRT SUPPORT SA516 30 21130 FLANGES SA709 100 21180 GASKETS SA123 75 21520 GASKETS SA123 20 21520 table b sheet 2 desc code CARBON STEEL - SHELL PLATE 21110 CARBON STEEL - SKIRTS/SAD 21130 CARBON STEEL - PIPES 21140 CARBON STEEL - TUBE SHEET 21170 STAINLESS STEEL - FLANGES 21180 BOLTS/NUTS/GASKETS/SPARE 21520 |
#4
![]() |
|||
|
|||
![]() Set TableA = Range("A1:A20") Set TableB = Range("K13:L88") X = TableA.Cells(3).Value Y = Application.VLOOKUP("*" & X & "*", TableB, 2, True) On Thu, 28 Oct 2004 19:22:01 -0700, "mango" wrote: Dear Myrna, you are great. can let me know how to put in vba? thanks alot. rgds "Myrna Larson" wrote: =VLOOKUP("*"&<table a desc&"*",table b, 2, true) On Thu, 28 Oct 2004 17:18:02 -0700, "mango" wrote: Dear all, do you think if use vlookup can work? vlookup(table a desc, table b, 2 , true) i tried but cannot as both not exact map. even i use true also cannot. pls help! i think need to use additional function, right? can show me using vba lookup in different sheet? thanks alot. table a sheet 1 desc material price (return code here) SHELL PLATE SA516 50 21110 SHELL PLATE SA516 40 21110 SKIRT SUPPORT SA516 30 21130 FLANGES SA709 100 21180 GASKETS SA123 75 21520 GASKETS SA123 20 21520 table b sheet 2 desc code CARBON STEEL - SHELL PLATE 21110 CARBON STEEL - SKIRTS/SAD 21130 CARBON STEEL - PIPES 21140 CARBON STEEL - TUBE SHEET 21170 STAINLESS STEEL - FLANGES 21180 BOLTS/NUTS/GASKETS/SPARE 21520 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Vlookup finds a blank, but returns a zero - HELP! | Excel Discussion (Misc queries) | |||
Vlookup Syntax Error | New Users to Excel | |||
Need help with modifying VLookUp | Excel Discussion (Misc queries) | |||
Vlookup with VBA | Excel Discussion (Misc queries) | |||
vlookup and IF function | Excel Worksheet Functions |