I have an excel binary sheet, so there are limited libraries i can refer to. I want to implement a multiple if condition. IF A column = False ,then "Not found" should be printed in column d with header name as "Exist". If "true" then check If column b= 2021 then "product coming soon" should be displayed else "product exist" is printed.
Excel equivalent:
=IF(A2=FALSE,"Not found",IF(A2=true ,IF(B=2021,"Product coming soon","Product exist")))
It should work for all the rows of column A.