小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

按指定的單元格顏色和數(shù)字顏色進(jìn)行計(jì)數(shù)或求和

 甘苦人生2010 2014-03-20

如果Excel工作表的某區(qū)域中包含不同的底紋顏色,我們可以用一個(gè)自定義函數(shù)對(duì)該區(qū)域按指定的單元格顏色進(jìn)行計(jì)數(shù)或求和。方法是:
1.按Alt+F11,打開(kāi)VBA編輯器。
2.單擊菜單“插入→模塊”,將插入名稱為“模塊1”的模塊,在右側(cè)的代碼窗口中輸入下列代碼:
Function SumByColor(Ref_color As Range, Sum_range As Range)
Application.Volatile
Dim iCol As Integer
Dim rCell As Range 
iCol = Ref_color.Interior.ColorIndex
For Each rCell In Sum_range 
If iCol = rCell.Interior.ColorIndex Then
SumByColor = SumByColor + rCell.Value
End If
Next rCell
End Function

Function CountByColor(Ref_color As Range, CountRange As Range)
Application.Volatile
Dim iCol As Integer
Dim rCell As Range 
iCol = Ref_color.Interior.ColorIndex
For Each rCell In CountRange 
If iCol = rCell.Interior.ColorIndex Then
CountByColor = CountByColor + 1
End If
Next rCell
End Function

上述兩個(gè)自定義函數(shù),一個(gè)是SumByColor,可以對(duì)區(qū)域按指定單元格的顏色求和。另一個(gè)是CountByColor,可以統(tǒng)計(jì)區(qū)域中某種顏色的個(gè)數(shù)。這兩個(gè)自定義函數(shù)都有兩個(gè)參數(shù),前一個(gè)參數(shù)指定包含某種顏色的單元格,后一個(gè)參數(shù)為求和或計(jì)數(shù)區(qū)域。
 3.關(guān)閉VBA編輯器。
使用方法:假如要求和或計(jì)數(shù)的區(qū)域在A1:B10區(qū)域中。
 求出該區(qū)域中單元格底紋顏色為紅色的所有單元格數(shù)值之和,在單元格中輸入公式:
=sumByColor(A1,A1:B10)
求出該區(qū)域中單元格底紋顏色為紅色的所有單元格的個(gè)數(shù),在單元格中輸入公式:
=CountByColor(A1,A1:B10)

按字求顏色
 
在Excel的內(nèi)建功能, 內(nèi)建函數(shù)中, 應(yīng)沒(méi)有針對(duì)顏色而自動(dòng)計(jì)算的方法。
 
故可能是唯一辦法- VBA自定義函數(shù)
 
我剛寫(xiě)了一個(gè)簡(jiǎn)單的VBA,絕對(duì)可以做到你的要求
 
 
Function COLORSUM(xx As Range, yy As Range) As Double
y = yy.Font.ColorIndex
For Each x In xx 
If x.Font.ColorIndex = y Then
xxx = xxx + x.Value
End If
Next 
COLORSUM = xxx
End Function
 
假設(shè)你的數(shù)字是在A1:A100
而A2的數(shù)字顏色是作為自動(dòng)求和的識(shí)別
 
只要將上述VBA貼在模塊上, COLORSUM函數(shù)便可以使用
 
輸入公式=COLORSUM(A1:A100,A2)
便會(huì)所有與A2相同顏色的數(shù)字, 自動(dòng)求和

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買(mǎi)等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類(lèi)似文章 更多