简体   繁体   English

检查一张纸中许多单元格中的值

[英]check the values in many cells in one sheet

I have two sheets in Excel. 我在Excel中有两张纸。 On one sheet I would like to have a function which validates the second sheet. 我想在一张纸上有一个功能来验证第二张纸。

Attached screenshot for better understanding: 随附的屏幕截图可帮助您更好地理解: 我要求的例子

EDIT : I am using it like this and it works: =IF(AND(ISBLANK(ABS!P4),ISBLANK(ABS!P35),ISBLANK(ABS!P38),ISBLANK(ABS!P43),ISBLANK(ABS!P49),ISBLANK(ABS!P53),ISBLANK(ABS!P54),ISBLANK(ABS!P55),ISBLANK(ABS!P71),ISBLANK(ABS!P76),ISBLANK(ABS!P77),"Not Done","Done") 编辑 :我这样使用它,它的工作原理是:= IF(AND(ISBLANK(ABS!P4),ISBLANK(ABS!P35),ISBLANK(ABS!P38),ISBLANK(ABS!P43),ISBLANK(ABS!P49) ),ISBLANK(ABS!P53),ISBLANK(ABS!P54),ISBLANK(ABS!P55),ISBLANK(ABS!P71),ISBLANK(ABS!P76),ISBLANK(ABS!P77),“未完成”,”完成”)

您可以像这样使用COUNTBLANK()函数:

=IF(COUNTBLANK(Sheet1!A1:A10)>0,"No","Yes")

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 使用Excel计算工作表中的单元格,值和公式的数量 - Counting how many cells, values, and formulas are in a sheet with Excel VBA检查是否在另一张纸中找到一张纸中的值 - VBA to check if values from one sheet are found in another sheet 使用MATCH和INDEX将值从一张纸复制到另一张纸 - Copy values from cells from one sheet to another with MATCH and INDEX 如何考虑根据另一张表中单元格的值将数据放入一张表 - How to consider putting data into one sheet based on values from cells in another sheet 如何使用XlsxWriter根据另一个工作表中的相应单元格值来格式化一个工作表中的所有单元格? - How to format all cells in one sheet based on corresponding cell values in another sheet using XlsxWriter? 在许多工作表中搜索值并将结果放在一张工作表中 - Searching many sheets for values and put the results in one sheet 在Excel中(从vb.net运行),我可以将一张工作表中所有单元格的值添加到另一张工作表中的单元格中吗? - in excel, running from vb.net, can I add the values of all the cells in one sheet to the cells in a different sheet? 根据其他单元格中的值将行数据从一张纸复制到一张或多张纸 - copy row data from one sheet to one or more sheets based on values in other cells Excel VBA用于隐藏一个工作表中的单元格(如果它们匹配另一个工作表中的单元格) - Excel VBA for hiding cells in one sheet if they match cells in another sheet 检查Excel工作表中是否存在单元格值,然后获取底部单元格的值并将其添加 - Check if cell value exists in excel sheet, then get the values of the bottom cells and add it
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM