在EXCEL表功能中,怎样把颜色和计数联系起来哪?
答案:3 悬赏:60 手机版
解决时间 2021-05-07 03:33
- 提问者网友:雪舞兮
- 2021-05-06 08:26
我是用来做房源信息统计的,比如说在一栋楼的房源信息里,已售出的标成红色,那么在表格下方,出一个统计,红色标注的就会自动出计数,
最佳答案
- 五星知识达人网友:夜余生
- 2021-05-06 09:36
在Excel中同时按Alt和F11,进入VB界面,左上窗口,右键点,插入,模块,在右边的窗口粘贴如下代码:
Function SumColor(target As Range, colorindex As Byte) As Integer
SumColor = 0
For Each cell In target
If cell.Font.colorindex = colorindex Then SumColor = SumColor + 1
Next
End Function
然后你在红色区域右边输入公式 =sumcolor(A2:O6,3),就可以了。
A2:O6就是你那个区域。
Function SumColor(target As Range, colorindex As Byte) As Integer
SumColor = 0
For Each cell In target
If cell.Font.colorindex = colorindex Then SumColor = SumColor + 1
Next
End Function
然后你在红色区域右边输入公式 =sumcolor(A2:O6,3),就可以了。
A2:O6就是你那个区域。
全部回答
- 1楼网友:雾月
- 2021-05-06 11:26
2007里有根据颜色筛选的。2007以下的没有这个功能。其实为什么不另外加一列,标注是否出售呢?这样统计起来也方便得多了
- 2楼网友:玩世
- 2021-05-06 11:15
272981307空间里有篇该问题的总结处理,可以参考一下
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯