|
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件 ★ 免费下载 ★ ★ 使用帮助★
Sub saveas()
Dim arr, lrow&, i&
arr = Sheets("录入").Range("b4:b23").Value
With Sheets("明细")
lrow = .Cells(Rows.Count, 1).End(xlUp).Row + 1
If Application.CountIf(.Range("a4:a" & lrow), Sheets("录入").Range("a2")) > 0 Then
MsgBox "批号已存在,请勿重复输入"
Exit Sub
Else
.Cells(lrow, 1) = Sheets("录入").Range("a2").Value
.Cells(lrow, 2).Resize(1, 20) = Application.Transpose(arr)
End If
End With
'Sheets("录入").Range("b4:b23").ClearContents '录入工作表b4:b23清除数据
End Sub
Book3.zip
(15.48 KB, 下载次数: 89)
今天真是郁闷............
|
评分
-
1
查看全部评分
-
|