简体   繁体   English

跨所有标准的标准

[英]Criteria across all range excel

I am using average across a range but only want to take cells that: 我在整个范围内使用平均值,但只想采用以下单元格:

  1. Are a number (isnumber()) 是数字(isnumber())
  2. Who's key match a particular string (form response = dataA) 谁的密钥与特定字符串匹配(表单响应= dataA)

    I am using 我在用

     =AVERAGEIF('Form Responses 1'!$L$2:$L$143, AND(ISNUMBER('Form Responses 1'!L2), 'Form Responses 1'!C3=Data!A3)) 

My issue comes from anything within the and() statement. 我的问题来自于and()语句中的任何内容。 How do I make sure that it compares and checks the appropriate cells? 如何确保它比较并检查适当的单元格?

Cheers 干杯

Is this what you are trying to do? 这是您要做什么?

=AVERAGEIFS('Form Responses 1'!$L$2:$L$143, 'Form Responses 1'!$C$2:$C$143, Data!A3)

It averages in range $L$2:$L$143 the numeric cells where column C matches the key in Cell A3 of worksheet Data . 它平均在$L$2:$L$143范围内的数字单元格中,其中C列与工作表Data单元格A3中的键匹配。

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

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