Thread: VLOOKUP + IF ?
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Claus Busch Claus Busch is offline
external usenet poster
 
Posts: 3,872
Default VLOOKUP + IF ?

Hi Amy,

Am Wed, 18 Nov 2020 11:26:29 -0800 (PST) schrieb Amy H:

So if A contains a certain word, it will pull out the category from another category table (C=categorize, D= the word)

If A contains word "CPC", then I would like to have it categorized as "Shipping" next to the word "CPC".

CPC l Shipping
Pen l Office supplies


try:
=INDEX(Sheet2!C:C,MATCH(A2,Sheet2!$D$1:$D$100,0))

In the newer version you also could use:
=XLOOKUP(A2,Sheet2!$D$1:$D$100,Sheet2!$C$1:$C$100, "",0)


Regards
Claus B.
--
Windows10
Office 2016