ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 求按a12里的数,把a2到a10相符合的数留下来

[复制链接]

TA的精华主题

TA的得分主题

发表于 2018-7-30 12:07 | 显示全部楼层 |阅读模式
求按a12里的数,把a2到a10相符合的数留下来.rar (6.37 KB, 下载次数: 10)

TA的精华主题

TA的得分主题

发表于 2018-7-30 13:07 | 显示全部楼层
a12里的数,把a2到a10相符合 ...

求按a12里的数,把a2到a10相符合的数留下来.rar

18.43 KB, 下载次数: 8

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2018-7-30 16:13 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
我只会写外壳,先分列,然后里面数据判断还不会0.0

Sub 数据处理()
   
    Dim a As Integer
    Dim i As Integer
    Dim b As Integer
    For b = 1 To 9
        For i = 1 To 256
            Cells(b, i).Select
            Selection.Value = a
            If a > 0 Then (这边要改)
                Selection.Delete
            End If
        Next
    Next
        
End Sub

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2018-7-30 17:34 | 显示全部楼层
程序有问题,不知道如何表示3是不是在(3,4,5,6,7)里面 求高人指点

Public Sub 数据处理()

    ThisWorkbook.Sheets("Sheet2").Activate
    Dim a As Integer
    Dim i As Integer
    Dim b As Integer
    Dim c As Integer '百位
    Dim d As Integer '十位
    Dim e As Integer '各位
    Dim f As Integer '最大的数
    Dim g As Integer '最小的数
    Dim x As Integer
    Dim y As Boolean
    Dim arr
    Dim m
   
    For b = 1 To 9
        For i = 1 To 256
            Cells(1, i).Select
            a = Selection.Value
            c = Int(a / 100)
            d = Int((a - c * 100) / 10)
            e = a - c * 100 - d * 10
            arr = Array(c, d, e)
            m = Array(3, 4, 5, 6, 7)
            f = WorksheetFunction.Max(arr)
            g = WorksheetFunction.Min(arr)
            n = f - g
            x = WorksheetFunction.Match(n, m, 0)
            y = VBA.IsEmpty(x)
            If y Then
                Selection.Value = 0
            End If
        Next
    Next
        
End Sub

TA的精华主题

TA的得分主题

发表于 2018-7-30 18:32 | 显示全部楼层
  1. Sub Test()
  2.     Dim arrSource As Variant, arrResult As Variant
  3.     Dim lngRow As Long, lngCount As Long, intDiff As Integer, lngID As Long
  4.     Dim strTemp As String, strSplit() As String, strFind As String
  5.    
  6.     arrSource = Sheet1.Range("A2:A10")
  7.     arrResult = Sheet1.Range("A13:B21")
  8.    
  9.     strFind = Sheet1.Range("A12")
  10.    
  11.     For lngRow = LBound(arrSource) To UBound(arrSource)
  12.         strTemp = arrSource(lngRow, 1)
  13.         strTemp = Trim(strTemp)
  14.         strSplit = Split(strTemp, " ")
  15.         For lngID = LBound(strSplit) To UBound(strSplit)
  16.             intDiff = GetDiff(strSplit(lngID))
  17.             If InStr(strFind, intDiff) < 1 Then
  18.                 strSplit(lngID) = ""
  19.             End If
  20.         Next
  21.         strTemp = Join(strSplit, " ")
  22.         Do Until InStr(strTemp, "  ") < 1
  23.             strTemp = Replace(strTemp, "  ", " ")
  24.         Loop
  25.         strTemp = Trim(strTemp)
  26.         arrResult(lngRow, 1) = strTemp
  27.         arrResult(lngRow, 2) = UBound(Split(strTemp, " ")) + 1
  28.     Next
  29.    
  30.     Sheet1.Range("A13:B21") = arrResult
  31. End Sub


  32. Function GetDiff(strTemp As String) As Integer
  33.     Dim intArr() As Integer
  34.     Dim intIndex As Integer
  35.    
  36.     strTemp = Trim(strTemp)
  37.     intIndex = Len(strTemp)
  38.     ReDim intArr(1 To intIndex) As Integer
  39.    
  40.     For intIndex = 1 To 3
  41.         intArr(intIndex) = Mid(strTemp, intIndex, 1)
  42.     Next
  43.    
  44.     intIndex = Application.WorksheetFunction.Max(intArr) - Application.WorksheetFunction.Min(intArr)
  45.     GetDiff = intIndex
  46. End Function
复制代码

TA的精华主题

TA的得分主题

发表于 2018-7-30 19:55 来自手机 | 显示全部楼层
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2025-1-11 07:09 , Processed in 0.025527 second(s), 13 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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