简体   繁体   中英

Sheets, if cell value exist then display a different cell

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).

solved: =vlookup("*treasury*",'January (1/22)':B,E,4,false)

try in E2:

=INDEX(IF(REGEXMATCH(B2:B, "(?i)treasury"), B2:B, ))

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM