Prevent duplicate entry in userform in excel vba

lovejanu4u

New Member
Joined
Apr 29, 2019
Messages
36
I am using command button to add data, but i want that code should also have duplicate entries restriction included in it.

Please check my code and help me finding the proper solution.

Thanks q in advance.

Code:
Dim x As Long
Dim y As Worksheet
Set y = Sheets("PRC Training Database")
x = y.Range("B" & Rows.Count).End(xlUp).Row
With y
.Cells(x + 1, "B").Value = TextBox1.Text
.Cells(x + 1, "c").Value = TextBox2.Text
.Cells(x + 1, "D").Value = TextBox3.Text
.Cells(x + 1, "E").Value = TextBox4.Text
.Cells(x + 1, "F").Value = TextBox5.Text
.Cells(x + 1, "G").Value = TextBox6.Text
.Cells(x + 1, "H").Value = TextBox7.Text
.Cells(x + 1, "I").Value = TextBox8.Text
.Cells(x + 1, "J").Value = TextBox9.Text
.Cells(x + 1, "K").Value = TextBox10.Text
.Cells(x + 1, "M").Value = TextBox11.Text
.Cells(x + 1, "N").Value = TextBox12.Text
.Cells(x + 1, "P").Value = TextBox13.Text
.Cells(x + 1, "Q").Value = TextBox14.Text
.Cells(x + 1, "S").Value = TextBox15.Text
.Cells(x + 1, "T").Value = TextBox16.Text
.Cells(x + 1, "V").Value = TextBox17.Text
.Cells(x + 1, "W").Value = TextBox18.Text
.Cells(x + 1, "Y").Value = TextBox19.Text
.Cells(x + 1, "Z").Value = TextBox20.Text
.Cells(x + 1, "AB").Value = TextBox21.Text
.Cells(x + 1, "AC").Value = TextBox22.Text
.Cells(x + 1, "AE").Value = TextBox23.Text
.Cells(x + 1, "AF").Value = TextBox24.Text
.Cells(x + 1, "AH").Value = TextBox25.Text
.Cells(x + 1, "AI").Value = TextBox26.Text
.Cells(x + 1, "AK").Value = TextBox27.Text
.Cells(x + 1, "AL").Value = TextBox28.Text
.Cells(x + 1, "AN").Value = TextBox29.Text
.Cells(x + 1, "AO").Value = TextBox30.Text
.Cells(x + 1, "AQ").Value = TextBox31.Text
.Cells(x + 1, "AR").Value = TextBox32.Text
.Cells(x + 1, "AT").Value = TextBox33.Text
.Cells(x + 1, "AU").Value = TextBox34.Text
.Cells(x + 1, "AW").Value = TextBox35.Text
.Cells(x + 1, "AX").Value = TextBox36.Text
.Cells(x + 1, "AZ").Value = TextBox37.Text
.Cells(x + 1, "BA").Value = TextBox38.Text
.Cells(x + 1, "BC").Value = TextBox39.Text
.Cells(x + 1, "BD").Value = TextBox40.Text
.Cells(x + 1, "BF").Value = TextBox41.Text
.Cells(x + 1, "BG").Value = TextBox42.Text
.Cells(x + 1, "BI").Value = TextBox43.Text
.Cells(x + 1, "BJ").Value = TextBox44.Text
.Cells(x + 1, "BL").Value = TextBox45.Text
.Cells(x + 1, "BM").Value = TextBox46.Text
.Cells(x + 1, "BO").Value = TextBox47.Text
.Cells(x + 1, "BP").Value = TextBox48.Text
 
Last edited by a moderator:

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Hi,
welcome to the forum.

I assume that one of your columns holds a unique entry maybe something like staff ID? if so, can you let us know which column it is otherwise, explain a little further which data you need to check for duplicates

Dave
 
Upvote 0
How are you defining "duplicate". Is there a column where a duplication of that one column makes the whole record a duplicate? Or must all the the columns entries be the same in order to be considered a duplicate?
 
Last edited:
Upvote 0
Yes, its ID.No with textbox1 which is in B column.


How are you defining "duplicate". Is there a column where a duplication of that one column makes the whole record a duplicate? Or must all the the columns entries be the same in order to be considered a duplicate?
 
Upvote 0
Yes, its ID.No with textbox1 which is in B column.

Hi,
untested but try this update to your code & see if helps

Code:
Private Sub CommandButton1_Click()
    Dim c As Integer, i As Integer, CheckColumn As Integer
    Dim x As Long
    Dim CheckDuplicate As String
    Dim y As Worksheet
    
    Set y = Sheets("PRC Training Database")
    
'value you are checking
    CheckDuplicate = Me.TextBox1.Text
'column you are checking
    CheckColumn = 2
    
    c = 1
'check for duplicate entery
    If Not Application.CountIf(y.Columns(CheckColumn), CheckDuplicate) > 1 Then
'get next blank row
    x = y.Range("B" & y.Rows.Count).End(xlUp).Row + 1
'loop each textbox control
    For i = 1 To 48
'column counter
        c = c + 1
'if column no > 10 then every odd no add 1 to column counter
        If i > 10 And i Mod 2 = 1 Then c = c + 1
'enter textbox value to range
        y.Cells(x, c).Value = Me.Controls("TextBox" & i).Text
    Next i
    Else
'duplicate - inform user
        MsgBox CheckDuplicate & Chr(10) & "Duplicate Entry", 48, "Duplicate"
    End If
End Sub

Dave
 
Upvote 0

Forum statistics

Threads
1,215,420
Messages
6,124,800
Members
449,189
Latest member
kristinh

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top