在 Excel 中查找两列的特定匹配值

在 Excel 中查找两列的特定匹配值

我有如下电子表格。其中,detection_BaP1 和 detection_NT1 列包含 Absent 和 Present。我想添加一个包含 Absent 和 Present 的新列 Global_detection

如果 detection_BaP1 和 detection_NT1 均为“缺失”,则在 Global_detection 中给出“缺失”,否则给出“存在”

tracking_id coverage_BaP1   coverage_NT1    BaP1    NT1 FC        detection_BaP1    detection_NT1   Global_detection
NM_000028   1.06E-14    1.35E-44    1.65E-15    2.40E-45    6.87E+29   Absent   Absent  
NM_000041   1.50439 0.472338    0.26732 0.0828073   3.228217802 Present Absent  
NM_000055   0.0677437   0.135153    0.0103961   0.0236942   -2.27914314 Absent  Absent  
NM_000061   0.0315361   0.0939712   0.00967921  0.033096    -3.419287318    Absent  Absent  
NM_000067   112.34  204.529 17.5228 36.5017 -2.08309745 Present Present 
NM_000070   0.00346421  0.0089972   0.000629599 0.00174727  -2.775210888    Absent  Absent  
NM_000072   4.78E-08    2.81E-07    8.52E-09    6.28E-08    -7.368209171    Absent  Absent  
NM_000076   0.901573    0.452928    0.141912    0.0806631   1.759317457 Absent  Absent  
NM_000084   2.40985 0.252053    0.378136    0.0454107   8.327024248 Present Absent  
NM_000087   1.2429  1.7001  0.216543    0.360131    -1.663092319    Present Present 

谁能告诉我如何在 Excel 中做到这一点?

答案1

您可能需要使用IF()AND()

=IF(AND(A2="Absent",B2="Absent"),"Absent","Present")

在此处输入图片描述

相关内容