1樓:
把問題作為內容(郵件主題一定要包含「excel」,本人以此為依據辨別非垃圾郵件,以免誤刪)、excel樣表檔案(把現狀和目標效果表示出來)作為附件發來看下 [email protected]
2樓:匿名使用者
假如三張有資料的表名sheet1、sheet2、sheet3,在統計彙總表的b2單元格輸入公式如下,下拉
=sumif(sheet1!a:a,a2,sheet1!
b:b)+sumif(sheet2!a:
a,a2,sheet2!b:b)+sumif(sheet3!
a:a,a2,sheet3!b:b)
3樓:匿名使用者
假如第二、三、四張表名稱分別為sheet2、sheet3、sheet4,則
a2=sumproduct((sheet2!$a$2:$a$100=a2)*sheet2!$b$2:$b$100)+
sumproduct((sheet3!$a$2:$a$100=a2)*sheet3!$b$2:$b$100)+
sumproduct((sheet4!$a$2:$a$100=a2)*sheet4!$b$2:$b$100)
a3、a4複製公式
4樓:匿名使用者
在sheet1的b2單元格輸入以下公式,然後向下填充公式
b")))
該公式可以通過row($2:$254)對後續253個表求和詳見附圖附件
5樓:平陽虎
似乎需要藉助於vba
關於excel統計人數的一個問題
6樓:匿名使用者
如果sheet2的銷售業績在b列,sheet3的a2:a4分別是「優秀」「良好」「合格」,那麼在sheet3的b2:b4單元格分別輸入以下公式
=countif(sheet2!b:b,">=50000")=countif(sheet2!
b:b,">=40000")-countif(sheet2!b:
b,">50000")
=countif(sheet2!b:b,">=30000")-countif(sheet2!b:b,">40000")
7樓:匿名使用者
用sumproduct函式可以實現。舉例說明:
有資料表如圖:
第一步:在f3輸入公式:=sumproduct(($a$2:$a$14=$e3)*($b$2:$b$14=f$2)*($c$2:$c$14))
第二步:將f3公式向右拉至c3,然後向下拉至c5.結果如圖:
excel 統計問題,關於權重統計
8樓:匿名使用者
假定你圖1的資料存放區域如下圖:
alt+f11,開啟vba編輯器,插入模組,複製貼上以下**,f5執行,結果顯示在a11—a16中。
sub tj()
dim i, j, x, y as byte
dim a, b, c, d, e, f as single
range("k:p").clear
for i = 2 to 8
x = 0
y = 0
for j = 3 to 10
if int(j / 2) <> j / 2 and cells(i, j) <> "" then
x = x + 1
else
if int(j / 2) = j / 2 and cells(i, j) <> "" then
y = y + 1
end if
end if
next
if x = 0 and y = 0 then
cells(i, asc(cells(i, 2)) - 54) = 1
end if
if x = 1 and y = 0 then
cells(i, asc(cells(i, 2)) - 54) = 0.5
for j = 3 to 10
if int(j / 2) <> j / 2 and cells(i, j) <> "" then
cells(i, asc(cells(i, j)) - 54) = cells(i, asc(cells(i, j)) - 54) + 0.5
end if
next
end if
if x > 1 and y = 0 then
cells(i, asc(cells(i, 2)) - 54) = 0.3
for j = 3 to 10
if int(j / 2) <> j / 2 and cells(i, j) <> "" then
cells(i, asc(cells(i, j)) - 54) = cells(i, asc(cells(i, j)) - 54) + 0.7 / x
end if
next
end if
if x = 0 and y >= 1 then
cells(i, asc(cells(i, 2)) - 54) = 0.6
for j = 3 to 10
if int(j / 2) = j / 2 and cells(i, j) <> "" then
cells(i, asc(cells(i, j)) - 54) = cells(i, asc(cells(i, j)) - 54) + 0.4 / y
end if
next
end if
if x = 1 and y >= 1 then
cells(i, asc(cells(i, 2)) - 54) = 0.3
for j = 3 to 10
if int(j / 2) <> j / 2 and cells(i, j) <> "" then
cells(i, asc(cells(i, j)) - 54) = cells(i, asc(cells(i, j)) - 54) + 0.6
else
if int(j / 2) = j / 2 and cells(i, j) <> "" then
cells(i, asc(cells(i, j)) - 54) = cells(i, asc(cells(i, j)) - 54) + 0.1 / y
end if
end if
next
end if
if x > 1 and y > 1 then
cells(i, asc(cells(i, 2)) - 54) = 0.2
for j = 3 to 10
if int(j / 2) <> j / 2 and cells(i, j) <> "" then
cells(i, asc(cells(i, j)) - 54) = cells(i, asc(cells(i, j)) - 54) + 0.7 / x
else
if int(j / 2) = j / 2 and cells(i, j) <> "" then
cells(i, asc(cells(i, j)) - 54) = cells(i, asc(cells(i, j)) - 54) + 0.1 / y
end if
end if
next
end if
next
range("k:p").clear
cells(11, 1) = "a=" & format(a, "0.00")
cells(12, 1) = "b=" & format(b, "0.00")
cells(13, 1) = "c=" & format(c, "0.00")
cells(14, 1) = "d=" & format(d, "0.00")
cells(15, 1) = "e=" & format(e, "0.00")
cells(16, 1) = "f=" & format(f, "0.00")
end sub
9樓:初級菜刀
關鍵是每次都是一個人幹嗎?會不會出現兩人同時乾的情況?好麻煩,沒法用簡單的函式進行統計,只能用vba了,可惜,不會。sorry.
10樓:綠衣人敲門
方案1在b2中輸入公式
=a1/sum($a$1:$a$3)
回車確認後,用滑鼠把公式向下複製到b3即可。
方案2⑴在c1中輸入公式
=a1*b1
回車確認後,用滑鼠把公式向下複製到單元格c34注意:a1、b1兩個數的積可以用貼上函式product()公式編輯為 =product(a1,b1)或 =product(a1:b1)
前者資料個數不得超過30,且每個資料之間必須用逗號分隔;後者採用單元格區域引用,編輯簡便。
⑵在c35輸入公式
=sum(c1:c34)
回車確認即可。
11樓:匿名使用者
搞好了,用上了程式設計來解決,費了我大半天時間。
如圖所示,裡有說明。開啟檔案要啟用巨集。
具體見附件!
12樓:匿名使用者
可以做你是要統計每個人的得分是吧
關於excel的問題,如圖,想統計b列不為空的數量,如果a列為空的話,則不計數,有哪個函式能實現呢?
13樓:果巨集毅
做了兩種彙總表
函式公式彙總表。
在姓名處點三角,選取非空白就是相要的結果。
資料透視表彙總表。
請看附件。
附件:2009-1-8 例題.xls
14樓:
=countifs(a:a,"><",b:b,"<>")
關於 excel 問題,請教一下
我認為根本不用 視窗凍結 那麼複雜,方法如下 1 在右側的上下滾動條的上箭頭的上方,緊貼著上箭頭 有一個很窄很窄的按鈕,滑鼠移到上面會出現類似調整行寬似的雙箭頭.將它向下拖動1行的位置,你再看,就會得到你要的效果。2 在下方的左右滾動條的右箭頭的右邊,緊貼著右箭頭 有一個同樣窄的按鈕,滑鼠移到上面會...
excel統計個數的問題,EXCEL表格統計各項個數和佔總體比例的問題
懸賞分 50 離問題結束還有 14 天 23 小時非常簡單的統計問題,請各位高手幫助解答清楚。例舉a列的資料 b f g c ga c e a db f b fa c g a da b c d g a b d i 這是一組選擇題的答案 每一行之內肯定不會有重複的資料。選擇題答案 就是 從 a選項到z...
excel問題,請教一下,excel問題,請教一下
是最後要得出起始月至終止月的累計銷量麼?陣列公式,ctrl shift enter結束順便說一下,這裡的row是提取動態數字3 8,與縱向,橫向沒有關係。您用的是vlookup函式,不是hlookup函式,所以這第三個引數只能表示為列 您表中的產品名這一列為第一列,1月份的列為第二列。這第三個引數是...