選中要顯示人數的單元格,假如統計平均分不及格的人數,就單擊選中
a14單元格,然後輸入:
=countifs(e2:e12,">=0",e2:e12,"<60")
其中e2:
e12是平均分所在的列,意思就是統計從e2到
e12這些單元格裡的資料。
「>=0
」和「<60
」是分數段。其他都不用改。
同理:及格人數的寫法就是:
=countifs(e2:e12,">=60",e2:e12,"<80")
即統計e2到
e12之間分數大於等於
60但是小於
80的人數。
優秀人數的寫法就是:
=countifs(e2:e12,">=80",e2:e12,"<=100")
147 統計各年齡段人數
函式fun的功能是 統計各年齡段的人數,n個年齡通過呼叫隨機函式獲取,並放在主函式的age陣列中,要求函式0 9歲的人數放在d 0 以此類推,把100歲 含100歲 以上的年齡人數都放在d 10 中,結構在主函式中輸出。define crt secure no warnings include de...
excel時間段統計問題
我的資料為 2005 1 12 7 28 2005 1 12 9 30.2005 5 31 22 16 資料有幾萬條,現在我想統計所有 7 00 9 00的資料個數 9 00 11 00個資料個數 我該怎麼辦?請高手賜教 7 00 9 00 sum if hour a 1 a 10000 7,1,0...
mysql按照時間段內 每天統計
sql select t.report time,count report time from select date format report time,y m d as report time from report count as t group by t.report time date...