欢迎访问服务器技术网-www.fuwuqijishu.com

如何在excel中计算指定颜色单元格之?

软件 fuwuqijishu 2年前 (2022-10-01) 13次浏览 0个评论 扫描二维码

关于如何在excel中计算指定颜色单元格之和的问题

用 宏自定义函数.按alt+F11 在左边窗口点右键选择插入模块然后再右边窗口粘贴以下宏自定义函数内容,该函数的用法是: =colors(选定的区域,颜色编号) 比如:=color(A1:C10,10) .颜色对应的编号看下面的图片.该函数判断的是单元格背景色 不是单元格字体的颜色
Function Colors(SRNG As Range, X As Integer) As Long
Dim Arng As Range
For Each Arng In SRNG
If Arng.Interior.ColorIndex = X Then
Colors = Colors + 1
End If
Next
End Function

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2520.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900