Excel根据字体颜色或背景色求和
1、 选择【开发工具】 点击【Visual Basic】

2、 选择【sheet1】,右击,选择【插入】,选择【模块】

3、写入代码
Function SumByFontColorAndBGColor(Col As Range, SumRange As Range) '根据字体颜色及背景颜色求和
Application.Volatile
Dim iCell As Range
SumByFontColorAndBGColor = 0
For Each iCell In SumRange
If iCell.Font.Color = Col.Font.Color And iCell.Interior.Color = Col.Interior.Color Then
SumByFontColorAndBGColor = SumByFontColorAndBGColor + Application.WorksheetFunction.Sum(iCell)
End If
Next
End Function
4、 = SumByFontColorAndBGColor(A3,A1:A12)
A3: 根据A3单元格的字体格式和背景色
A1:A12:查找的范围。

声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
阅读量:171
阅读量:188
阅读量:161
阅读量:57
阅读量:152