简体   繁体   English

Excel计数不同工作表上的出现次数

[英]Excel Count number of occurances on different worksheets

I did not find any easy to understand solutions on the forum. 我在论坛上找不到任何易于理解的解决方案。 I have four work sheets. 我有四个工作表。 Tab1, Tab2, Tab3, Tab4 On each tab (2,3 and 4) cell E3 contains a value. Tab1,Tab2,Tab3,Tab4在每个选项卡(2、3和4)上,单元格E3都包含一个值。 I want to display the count on Tab1 when the value = 100 for the 3 tabs. 我想在3个标签的值= 100时在Tab1上显示计数。 For example, If sheets 3 and 4 have a value of 100, then tab 1's cell should show count as 2. When tab 2 also has a value of 100, then tab 1 should say 3. 例如,如果工作表3和4的值为100,则选项卡1的单元格应显示为2。当选项卡2的值也为100时,选项卡1的值应为3。

Thanks for your help! 谢谢你的帮助!

If you really only have 3 sheets then use this formula 如果您确实只有3张纸,则使用此公式

=(Tab2!E3=100)+(Tab3!E3=100)+(Tab4!E3=100)

That will count how many of your worksheets have E3 value = 100, if you want to count how many are at least 100 change to this: 如果要计算至少有 100次更改,那么这将计算您的工作表中E3值= 100的数量:

=(Tab2!E3>=100)+(Tab3!E3>=100)+(Tab4!E3>=100)

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

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