简体   繁体   中英

check the values in many cells in one sheet

I have two sheets in 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")

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

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM