If your sample data covers all possible combinations of Yes, No, NA, & Maybe
then you can recreate your output column using the below formula and filling down as necessary
=IF(B2="NA",A2,IF(B2="Maybe",B2,B2))
which can be simplified to
=IF(B1="NA",A1,B1)
If you have not provided all combinations of values then this likely will not work and you will need to update your sample data. This solution assumes:
Column A
can only contain Yes & No
Column B
can only contain Yes & No & NA & Maybe
- There is no instance where one column is
Yes
and the other is No
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…