我想验证单元格B中的值是否存在于单元格B中。我使用了
=IF(ISNA(MATCH(A2,$B$2:$B$2,1)),"No","Yes") 'this working partially.
以下单元格值显示“否”
单元格A值:
星光大道
单元格B值:
我们年轻时(2015年) 评论家的共识:凄美而且非常诚实,虽然我们年轻人发现作家兼导演诺亚·鲍姆巴赫通过一些最相关的人物提供了一些最有趣的线条。 ... Noah Boaumbach的喜剧虽然我们是年轻的明星Ben Stiller和Naomi Watts饰演Josh和...
这有什么问题?
答案 0 :(得分:1)
试试这个公式
UIImage
第一个-(void) initCapturingDevice
{
[self releaseCapturingDevice];
self.capture_session = [[AVCaptureSession alloc] init];
[self.capture_session beginConfiguration];
self.video_data_output = [[AVCaptureVideoDataOutput alloc] init];
self.video_data_output.videoSettings = [NSDictionary dictionaryWithObject:[NSNumber numberWithInt:kCVPixelFormatType_32BGRA] forKey:(id)kCVPixelBufferPixelFormatTypeKey];
[self.video_data_output setSampleBufferDelegate:self queue:dispatch_get_main_queue()];
[self.capture_session addOutput:self.video_data_output];
self.capture_session.sessionPreset = AVCaptureSessionPresetPhoto;
// some code here ...
}
检查空搜索字段,如果是这种情况,输出字段为空。 =IF(A2="","",IFERROR(IF(SEARCH(A2,$B$2:$B$2,1)>0,"Yes"),"No"))
在文本中查找搜索字符串的位置。如果找到,则返回起始位置,但如果未找到搜索字符串则会出错。因此,如果找不到文字,我会用IF
将其包围,以返回SEARCH
。
答案 1 :(得分:1)
如果情况无关紧要:
=IF(ISERROR(SEARCH(A2,$B$2:$B$2,1)),"No","Yes")
如果案件有问题:
=IF(ISERROR(FIND(A2,$B$2:$B$2,1)),"No","Yes")