ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 如何用VB解决以日期和数量自动生成编号

[复制链接]

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-8-4 11:27 | 显示全部楼层
本帖最后由 BMW5566 于 2018-8-4 11:35 编辑
gbgbxgb 发表于 2018-8-3 15:41
如果L列的日期是手动编辑B列引起的结果,那么,把代码中的12改成2就可以了(注:仅指theColumn = 12中的12 ...

还是不行!想破头脑还是不知道哪里出问题,我把原本表格的代码发给您看下,您帮我看下如何与您编写的代码结合

123.rar

307.85 KB, 下载次数: 46

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-8-11 16:47 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助

前辈:
根据您编写的代码,现能实现了!但有个问题:为了防止他人手动修改这些自动生成的编号,我将这些单元格设置了保护---锁定后,就会跳出运行错误1004---正在试图更改保护单元格;麻烦老师再帮忙想想这个要如何解决!感谢感谢~~~

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-8-11 16:50 | 显示全部楼层
本帖最后由 BMW5566 于 2018-8-11 16:51 编辑
  1. Private Sub Worksheet_Change(ByVal Target As Range)
  2.     Dim theInputRow&, theDate As Date, theYear&, theMonth&, theDay&
  3.     Dim theColumn&, theNum&, theValue As Variant
  4.     '
  5.     With Target
  6.         theInputRow = .Row
  7.         If theInputRow < 2 Then End
  8.         theColumn = .Column
  9.     End With
  10.     '
  11.     Application.EnableEvents = False
  12.     If theColumn = 9 Or theColumn = 12 Then
  13.         With Me
  14.             .Range(.Cells(theInputRow, 13), .Cells(theInputRow, 20)).ClearContents
  15.             theValue = .Cells(theInputRow, 9)
  16.             If IsNumeric(theValue) Then
  17.                 theNum = CLng(theValue)
  18.                 If theNum > 0 Then
  19.                     theValue = .Cells(theInputRow, 12)
  20.                     If IsDate(theValue) Then
  21.                         theDate = CDate(theValue)
  22.                         theYear = Year(theDate)
  23.                         theMonth = Month(theDate)
  24.                         theDay = Day(theDate)
  25.                         Call theStrInput(theInputRow, theNum, theYear, theMonth, theDay)
  26.                     End If
  27.                 End If
  28.             End If
  29.         End With
  30.     End If
  31.     Application.EnableEvents = True
  32. End Sub

  33. Private Sub theStrInput(theInputRow&, theNum&, theYear&, theMonth&, theDay&)
  34.     Dim thePreviousRow&, theStr$, thePreviousNum&, theColumn&
  35.     Dim i&, a As Variant, theStrFirst$, theStrLast$
  36.     '
  37.     thePreviousRow = theInputRow - 2
  38.     With Me
  39.         Do While thePreviousRow > 1
  40.             For theColumn = 20 To 13 Step -1
  41.                 theStr = .Cells(thePreviousRow, theColumn)
  42.                 If theStr <> "" Then
  43.                     theStr = Right(theStr, 4)
  44.                     If IsNumeric(theStr) Then thePreviousNum = CLng(theStr)
  45.                     Exit Do
  46.                 End If
  47.             Next theColumn
  48.             thePreviousRow = thePreviousRow - 2
  49.         Loop
  50.         theStrFirst = "SQB" & Right(theYear, 2) & Format(theMonth, "00") & Format(theDay, "00")
  51.         ReDim a(1 To theNum)
  52.         For i = 1 To theNum
  53.             theStrLast = theStrFirst & Format(i + thePreviousNum, "0000")
  54.             a(i) = theStrLast
  55.         Next i
  56.         .Cells(theInputRow, 13).Resize(, theNum) = a
  57.     End With
  58. End Sub
复制代码


TA的精华主题

TA的得分主题

发表于 2018-8-11 22:38 | 显示全部楼层
BMW5566 发表于 2018-8-11 16:47
前辈:
根据您编写的代码,现能实现了!但有个问题:为了防止他人手动修改这些自动生成的编号,我将这些 ...

在With Me语句下,.Range(.Cells(theInputRow, 13), .Cells(theInputRow, 20)).ClearContents语句前添加如下代码:
.Protect Password:="你的工作表保护密码",UserInterfaceOnly:=True

评分

1

查看全部评分

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-8-13 08:06 | 显示全部楼层
gbgbxgb 发表于 2018-8-11 22:38
在With Me语句下,.Range(.Cells(theInputRow, 13), .Cells(theInputRow, 20)).ClearContents语句前添加 ...

成功了,感谢感谢

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-8-13 08:06 | 显示全部楼层
gbgbxgb 发表于 2018-8-11 22:38
在With Me语句下,.Range(.Cells(theInputRow, 13), .Cells(theInputRow, 20)).ClearContents语句前添加 ...

成功了,感谢感谢

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-9-16 08:28 | 显示全部楼层
gbgbxgb 发表于 2018-8-11 22:38
在With Me语句下,.Range(.Cells(theInputRow, 13), .Cells(theInputRow, 20)).ClearContents语句前添加 ...

前辈:能否再帮忙解决下,原来每一行自动生成的代码个数根据输入数量而决定,例如:输入数量5个,就自动生成了5个编号;问题来了:数量超过8个就会把其他单元格填充,能否帮忙设定下自动生成的编号限制于小于等于8个编号;超过9个就提示重新输入!望前辈给予指点解决,小女万分感激!!!

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-10-11 15:37 | 显示全部楼层
gbgbxgb 发表于 2018-8-11 22:38
在With Me语句下,.Range(.Cells(theInputRow, 13), .Cells(theInputRow, 20)).ClearContents语句前添加 ...

前辈:能否再帮帮忙,就是每一栏都根据数量自动生成了编号,现在出现问题是:当其中有一栏数量要进行更改,相对应的那栏自动生成编号也会进行更改,接下来另一栏就无法进行更改,必须每一栏手动进行更改数量,才可实现编号更新,这样工作量极大,麻烦老师再帮忙想想这个要如何解决!感谢感谢~~~
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2025-1-16 20:02 , Processed in 0.022874 second(s), 10 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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