1樓:匿名使用者
=countif(a1:a20,">=240")-countif(a1:a20,"<270")
用這樣的公式就行了。
不好意思,寫錯了,應該是
=countif(a1:a20,">=240")-countif(a1:a20,">270")
才對,就是大於等於240的數字個數減去大於270的數字個數,剩下的不就是你需要的範圍內的數字個數了麼?
2樓:森美快跑
如果是求a列符合大於等於240,小於270可以嘗試以下公式=sumproduct((a1:a8>=240)*(a1:a8<270)*(a1:a8))
求個數為:
=countif(a1:a8,">=240")-countif(a1:a8,">=270")
tokto,的答案是大於等於240,小於等於270的答案,如果剛好有個270的數就算進去了,所以要連270都要排除出去,要用 >=270
3樓:
條件多了建議用sumproduct函式代替
=sumproduct((a1:a25>=240)*(a1:a25<=270))
4樓:匿名使用者
=countif(a:a,">=240")-countif(a:a,">=270")
5樓:匿名使用者
=countif(a1:a10,">=240")-countif(a1:a10,">=270")
6樓:小矇
=countif(a1:a6,">=240")-countif(a1:a6,">=270")
7樓:匿名使用者
在countif函式中套用and函式就可以啦
excel中countif函式大於等於80且小於等於90如何輸入?
8樓:匿名使用者
countif無法多條件計數,可用兩個函式相減:
=countif(a:a,"<=90")-countif(a:a,"<80")
如果是2007版或2010版,可用countifs。
=countifs(a:a,">=80",a:a,"<=90")03版也可用
=sumproduct((a1:a100>=80)*(a1:a100<=90))
excel使用countif函式時條件為一個數值範圍時(大於等於75,小於90)公式怎麼寫?
9樓:tongkai瓜
具體是什麼條件,區分對待,03版不能實現多條件,如果是07以上版本,可用countifs函式完成,這個函式是專門為多條件統計實現的。
03版可用sumproduct函式來實現
=sumproduct((區域1=條件1)*(區域2=條件2)),這裡的區域是一樣多行數的。否則出錯。
用countif如果是文字條件的,用countif()+countif()
如果是數字區間的,countif(區域,"<=大數「)-countif(區域,"<=小數")
或countif(區域,">=小數")-countif(區域,">=大數")
excel裡的countif函式如何同時使用兩個條件啊?
10樓:
一般要用sum來配合設定多組條件:
例如:求a1:a30範圍內,數值等於255 和 331 的個數。
=sum(countif(a1:a20,)*)求a1:a30範圍內,數值大於255小於331的個數=sum(countif(a1:
a20,)*)求a1:a30範圍內,數值小於255和大於或等於331的個數=sum(countif(a1:a20,)*)
11樓:匿名使用者
做作業居然來這問,這可不太好。建議你看幫助,學會自己查。
12樓:淡夕丘茶
如查你用excel2007或wps**2012,可用函式。
=countifs(a1:a100,"文字條件1",b1:b100,"文字條件2")
如果用excel2003(或2007、wps2012),可用=sumproduct((a1:a100="文字條件1")*(b1:b100="文字條件2"))
急!求高解,excel中countif函式大於等於80且小於等於90如何輸入,在網上也找了答案可是總是不對。
13樓:匿名使用者
countif無法多條件計數,
可用兩個函式相減:
=countif(a:a,"<=90")-countif(a:a,"<80")
如果是2007版或2010版,可用countifs。
=countifs(a:a,">=80",a:a,"<=90")03版也可用
=sumproduct((a1:a100>=80)*(a1:a100<=90))
14樓:眯住眼串針
大於等於80且小於等於90
這屬於多條件了,一般用countifs或是sumproduct進行統計次數
15樓:匿名使用者
如果a列是資料,公式
=countif(a:a,">=80")-countif(a:a,">90")
excel中countif函式中有兩個條件該怎麼填
16樓:匿名使用者
具體是什麼條件,區分對待,03版不能實現多條件,如果是07以上版本,可用countifs函式完成,這個函式是專門為多條件統計實現的。
03版可用sumproduct函式來實現
=sumproduct((區域1=條件1)*(區域2=條件2)),這裡的區域是一樣多行數的。否則出錯。
用countif如果是文字條件的,用countif()+countif()
如果是數字區間的,countif(區域,"<=大數「)-countif(區域,"<=小數")
或countif(區域,">=小數")-countif(區域,">=大數")
17樓:匿名使用者
求a1:a30範圍內
,數值等於255 和 331 的個數。
=sum(countif(a1:a20,)*)求a1:a30範圍內,數值大於255小於331的個數=sum(countif(a1:
a20,)*)求a1:a30範圍內,數值小於255和大於或等於331的個數=sum(countif(a1:a20,)*)
18樓:一逸永勞
countif()+countif()
excel中的countif函式中如果條件必須大於某值並且同時小於某值時怎麼表述?
19樓:匿名使用者
呵呵!你統計總的,然後減去小於a大於b的不就行了!
20樓:無極限
資料\篩選\高階篩選\就可以設定條件
21樓:
用篩選吧,然後吧需要的複製到別工作表
excel用countif函式輸範圍時怎麼輸:如即小於等於60又大於等於50怎麼輸
22樓:匿名使用者
=countif(a1:a5,"<=60")-countif(a1:a5,"<50")
excel中countif函式怎麼計算大於且小於特定值的個數 10
23樓:匿名使用者
版本countifs可用
的話,用:=countifs(w3:w1979,">-100",w3:w1979,"<0.1")
否則用:=countif(w3:w1979,">-100")-countif(w3:w1979,">=0.1")
24樓:匿名使用者
2007以上版本用countifs
=countifs(w:w,">-100",w:w,"<1")
25樓:天雨下凡
改用countifs函式
=countifs(w3:w1979,">-100",w3:w1979,"<0.1")
26樓:不想起名字了
=sumproduct((w5:w11>-100)*(w5:w11<0.1))
ecel中countif統計不連續單元格滿足某一條件的用法
在dua19輸入公式 sumproduct mod row a3 a17 2 a3 a17 a1 在zhia20輸入公式 sumproduct mod row a3 a17 2 0 a3 a17 a1 再將兩dao公式向右拉填充至i即可內。如果要用countif函式,容在a19輸入公式 sumpro...
ecel中怎樣用countif計算在兩個數值之間的數的個數
舉例說明,假如以a1單元格到a50單元格中的資料為依據。要統計大於10小於30之間的個數有多少 前提條件是資料中最小的數要小於等於10,最大的數要大於等於30 在一個空白單元格中輸入的公式,可以分為四種情況 1 大於10並且小於等於30,sum countif a1 a50,2 大於等於10並且小於...
ecel如何使用sumifs函式對區域的條件求值
sumifs 求和區域,條件區域,180 條件區域,360 excel中sumifs函式求在某個區間的值 我沒bai 有excel2007,你可以用03的函式解決,dusumproduct h1 h20 65 h1 h20 85 h1 h20 哦,你的zhi條件是i列和 daoj列。那就是 sump...