ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
12
返回列表 发新帖
楼主: wwdfefgg

[求助] 检测K列和M列的异常数

[复制链接]

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-11-29 17:14 | 显示全部楼层
yynrzwh 发表于 2024-11-29 15:58
Sub 标色()

With Sheet1

e26ade7c453291f9538db3233f4323d8.png


标记的位置有点问题,应该标到我框选的位置

TA的精华主题

TA的得分主题

发表于 2024-11-30 10:04 | 显示全部楼层

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-11-30 10:36 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2024-11-30 23:13 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
有数据陷阱,没那么简单

TA的精华主题

TA的得分主题

发表于 2024-12-1 16:10 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
找上波或下波中間的異常點///
Xl0000311.rar (407.36 KB, 下载次数: 2)

TA的精华主题

TA的得分主题

发表于 2024-12-1 16:14 | 显示全部楼层
  1. Sub DetectAndHighlightAnomalies()
  2.     Dim lastRow As Long
  3.     Dim i As Long
  4.     Dim isIncreasing As Boolean
  5.     Dim isDecreasing As Boolean
  6.     Dim rangeToCheck As Range
  7.     Dim firstAnomalyCell As Range
  8.    
  9.     ' 获取K列和M列最后一行有数据的行号
  10.     lastRow = Cells(Rows.Count, "K").End(xlUp).Row
  11.    
  12.     ' 设置要检查的区域为K列和M列的数据区域
  13.     Set rangeToCheck = Union(Range("K1:K" & lastRow), Range("M1:M" & lastRow))
  14.    
  15.     ' 遍历区域中的每个单元格,检查数据趋势
  16.     For i = 2 To lastRow
  17.         If Cells(i, "K") > Cells(i - 1, "K") Then
  18.             isIncreasing = True
  19.             isDecreasing = False
  20.         ElseIf Cells(i, "K") < Cells(i - 1, "K") Then
  21.             isIncreasing = False
  22.             isDecreasing = True
  23.         End If
  24.         
  25.         If Cells(i, "M") > Cells(i - 1, "M") Then
  26.             If Not isIncreasing Then
  27.                 If firstAnomalyCell Is Nothing Then
  28.                     Set firstAnomalyCell = Cells(i, "K")
  29.                     If Cells(i, "K") = Cells(i, "M") Then
  30.                         Set firstAnomalyCell = Cells(i, "M")
  31.                     End If
  32.                 End If
  33.                 Cells(i, "K").Interior.Color = RGB(0, 255, 0)
  34.                 Cells(i, "M").Interior.Color = RGB(0, 255, 0)
  35.             End If
  36.             isIncreasing = True
  37.             isDecreasing = False
  38.         ElseIf Cells(i, "M") < Cells(i - 1, "M") Then
  39.             If not isDecreasing Then
  40.                 If firstAnomalyCell Is Nothing Then
  41.                     Set firstAnomalyCell = Cells(i, "K")
  42.                     If Cells(i, "K") = Cells(i, "M") Then
  43.                         Set firstAnomalyCell = Cells(i, "M")
  44.                     End If
  45.                 End If
  46.                 Cells(i, "K").Interior.Color = RGB(0, 255, 0)
  47.                 Cells(i, "M").Interior.Color = RGB(0, 255, 0)
  48.             End If
  49.             isIncreasing = False
  50.             isDecreasing = True
  51.         End If
  52.     End For
  53.    
  54.     ' 如果找到异常单元格,定位到第一个异常单元格
  55.     If Not firstAnomalyCell Is Nothing Then
  56.         firstAnomalyCell.Select
  57.     End If
  58. End Sub

  59. Sub ClearColors()
  60.     Dim lastRow As Long
  61.     Dim rangeToClear As Range
  62.    
  63.     ' 获取K列和M列最后一行有数据的行号
  64.     lastRow = Cells(Rows.Count, "K").End(xlUp).Row
  65.    
  66.     ' 设置要清除颜色的区域为K列和M列的数据区域
  67.     Set rangeToClear = Union(Range("K1:K" & lastRow), Range("M1:M" & lastRow))
  68.    
  69.     ' 清除区域内单元格的颜色
  70.     rangeToClear.Interior.ColorIndex = xlColorIndexNone
  71. End Sub
复制代码
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-12-4 16:20 , Processed in 0.051973 second(s), 7 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表