简体   繁体   中英

Complicated If statement

I'm having a hard time solving a problem.

The Objective is to look at Column B. If say Cell B1 contrains "Certain Text" or "Certain Text 2" Then the Cell directly to it's left A1 in this case should return "Certain Text 3" Else "Certain Text 4". This process continues onto all the rows in Column B.

Please note that I have around 65,000 rows.

Thank you

将其放入 A1 并双击“填充手柄”。

=IF(OR(B1={"Certain Text", "Certain Text 2"}), "Certain Text 3", "Certain Text 4")

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