What I am trying to do:
Search column "B" for the partial word "treasury", if the cell value in column "B" exist then display the cell in column "E" (same row).
CodePudding user response:
solved: =vlookup("*treasury*",'January (1/22)'!B:E,4,false)
CodePudding user response:
try in E2:
=INDEX(IF(REGEXMATCH(B2:B, "(?i)treasury"), B2:B, ))
