標題:
[發問]
如何讓表單自動產生財產編號??
[打印本頁]
作者:
afu9240
時間:
2018-4-12 14:56
標題:
如何讓表單自動產生財產編號??
各位高手及版大好
表單再新增後會產生時間,選擇資產類別後,
財產編號要如何自動帶到下個一編號呢??
因為資產類別有分,如何依照資產類別去抓下一個編號呢!!!求解 拜託
[attach]28516[/attach]
[attach]28517[/attach]
作者:
afu9240
時間:
2018-4-13 13:44
有人可以教我一下嗎>??
作者:
naruto018
時間:
2018-4-13 16:36
回復
1#
afu9240
參考看看
Private Sub ComboBox3_Change()
With Worksheets(1).Range("A:A")
Set c = .Find(ComboBox3.Text, LookIn:=xlValues, SearchDirection:=xlPrevious)
If Not c Is Nothing Then
TextBox1.Text = ComboBox3.Text & Format(Val(Right(c.Value, Len(c.Value) - 2)) + 1, "00000")
Else
TextBox1.Text = ComboBox3.Text & "00001"
End If
End With
End Sub
複製代碼
作者:
afu9240
時間:
2018-4-16 11:29
回復
3#
naruto018
非常感謝n大提供code,內容還要再深入了解,但這邊先跟n大請教一下,
在選擇 combobox3資產類別選項後,財編會自動帶出,但按儲存後有出現下面畫面,(資料有存入到工作表1),
[attach]28527[/attach][attach]28528[/attach][attach]28529[/attach]
作者:
iamaraymond
時間:
2018-4-16 16:07
回復
4#
afu9240
會有這個錯是因為當你按下"儲存"時,所以格子都被清空,所以觸動到combobox3_change,但此時combobox3裡面沒有值
所以解決方法就是,判斷若combobox3裡沒有值,就不執行程式
Private Sub ComboBox3_Change()
If ComboBox3.Text = "" Then Exit Sub
With Worksheets(1).Range("A:A")
Set c = .Find(ComboBox3.Text, LookIn:=xlValues, SearchDirection:=xlPrevious)
If Not c Is Nothing Then
TextBox1.Text = ComboBox3.Text & Format(Val(Right(c.Value, Len(c.Value) - 2)) + 1, "00000")
Else
TextBox1.Text = ComboBox3.Text & "00001"
End If
End With
End Sub
複製代碼
作者:
Hsieh
時間:
2018-4-16 16:49
回復
1#
afu9240
Private Sub ComboBox3_Change()
With 工作表1
n = Application.CountIf(.[A:A], ComboBox3 & "*")
TextBox1.Text = ComboBox3 & Format(n + 1, "0000")
End With
End Sub
Private Sub CommandButton1_Click() '新增輸入
Dim x As Integer
TextBox11.Text = Date
CommandButton1.Visible = False
CommandButton9.Visible = True
End Sub
Private Sub CommandButton2_Click() '結束系統
End
End Sub
Private Sub CommandButton9_Click() '儲存
Dim CT As Control
For Each CT In Controls
If CT.Parent.Name = "Page1" And CT.Name Like "*Box*" Then
If CT = "" Then MsgBox "資料未填": Exit Sub
End If
Next
ar = Array(TextBox1, ComboBox3, ComboBox1, TextBox3, TextBox4, TextBox5, TextBox6, TextBox8, ComboBox2, TextBox9, "", TextBox7, TextBox10, "", TextBox11)
With 工作表1
.Cells(.Rows.Count, 1).End(xlUp).Offset(1).Resize(, UBound(ar) + 1) = ar
End With
End Sub
複製代碼
作者:
afu9240
時間:
2018-4-16 17:01
回復
5#
iamaraymond
i 大 感謝 受教了~~解決這項問題
作者:
GBKEE
時間:
2018-4-17 11:23
回復
7#
afu9240
[attach]28534[/attach]
了解看看,不懂再問
作者:
afu9240
時間:
2018-5-14 15:36
回復
6#
Hsieh
感謝超級版主*20000,這段CODE我需要好好研究,,,真的非常感謝...
歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)