Preventing Duplicated Data Input from Click Button from one sheet to another

marlbrarian

New Member
Joined
Sep 27, 2022
Messages
5
Office Version
  1. 365
Platform
  1. Windows
Hi there,
Old thread I know, I'm having a little bit of trouble getting something to work.
I'm also a bit of a novice, I'll admit.

I'm trying to Populate a table, this I've succeeded in.
Now however I need the information in a specific cell to be read and held against a portion of my table to ensure its not a duplicate.

Read from
Worksheet - Input
Cell C3

Compare to
Worksheet - Database
Tablename - FixDataBase
Column 1 (A), the column name is 'Suffix'

If a match is found I need an error message to be thrown up and the data for the table not to be put in.
(Also for the Cells not to be cleared, which they currently are at the end of the program.

I was attempting to modify the code above for my purpose but i couldn't get it working.
Any help would be greatly appreciated.


VBA Code:
Private Sub insertTAB_Click()
'change test to uppercase
Dim mycell As Range
Dim myrange As Range
'---------------------------
'Add Data into FixDataBase
Dim myRow As ListRow
Dim intRows As Integer
'---------------------------
 'Prevent Duplicate Definitions here


        
        
    
'---------------------------
'change text to uppercase
Set myrange = ActiveWorkbook.Worksheets("Input").Range("C3:C4")
            
For Each mycell In myrange
mycell.Value = UCase(mycell.Value)
 Next mycell
        
Set myrange = ActiveWorkbook.Worksheets("Input").Range("C8:C17")
                                    
For Each mycell In myrange
mycell.Value = UCase(mycell.Value)
 Next mycell
'---------------------------
                            
'Prevent Duplicate Code here
                                
                
           
        
        
'---------------------------
'Add Data into FixDataBase
intRows = ActiveWorkbook.Worksheets("Database").ListObjects("FixDataBase").ListRows.Count
Set myRow = ActiveWorkbook.Worksheets("Database").ListObjects("FixDataBase").ListRows.Add(intRows)
    
myRow.Range(1) = Range("C3")
myRow.Range(2) = Range("C4")
myRow.Range(3) = Range("C5")
myRow.Range(4) = Range("C6")
myRow.Range(5) = Range("C8")
myRow.Range(6) = Range("C9")
myRow.Range(7) = Range("C13")
myRow.Range(8) = Range("C12")
myRow.Range(9) = Range("C17")
myRow.Range(10) = Range("C16")
        

'Clear Cell Contents on Completion of input
Range("C3:C17").Clear
            
             
    
    
End Sub
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Hi,
only just seen this post did you manage to resolve?

Dave
 
Upvote 0
Hi,
only just seen this post did you manage to resolve?

Dave
Good Morning Dave,
Sadly not yet. I had another go, and internet trawl but couldn’t sus it out myself. Ran out of time to finish it off, and haven’t revisited it yet. I was going to have another stab at it soon.
Any ideas, would be greatly appreciated.
Sam
 
Upvote 0
Any ideas, would be greatly appreciated.


Try

VBA Code:
Sub insertTAB_Click()
    Dim i           As Long
    Dim tblDatabase As ListObject
    Dim myrow       As ListRow
    Dim m           As Variant
    Dim Search      As String
    Dim myrange     As Range, cell As Range
    
    With ThisWorkbook
        Set tblDatabase = .Worksheets("Database").ListObjects("FixDataBase")
        'data entry input range
        Set myrange = .Worksheets("Input").Range("C3:C17")
    End With
    
    'duplicate search value
    Search = myrange.Cells(1, 1).Value
    If Len(Search) = 0 Then Exit Sub
    
    'check for existing record
    m = Application.Match(Search, tblDatabase.Range.Columns(1), 0)
    
    If IsError(m) Then
        'add new record
        Set myrow = tblDatabase.ListRows.Add(AlwaysInsert:=True)
        
        For Each cell In myrange.Cells
            i = i + 1
            myrow.Range(i) = UCase(cell.Value)
        Next cell
        
        'Clear Cell Contents on Completion of input
        myrange.ClearContents
        
        MsgBox Search & Chr(10) & "New Record Added To Database", 64, "New Record"
        
    Else
        'duplicate - inform user
        MsgBox Search & Chr(10) & "Value already exists", 48, "Duplicate"
        
    End If
    
End Sub

Dave
 
Upvote 0
Solution
Try

VBA Code:
Sub insertTAB_Click()
    Dim i           As Long
    Dim tblDatabase As ListObject
    Dim myrow       As ListRow
    Dim m           As Variant
    Dim Search      As String
    Dim myrange     As Range, cell As Range
   
    With ThisWorkbook
        Set tblDatabase = .Worksheets("Database").ListObjects("FixDataBase")
        'data entry input range
        Set myrange = .Worksheets("Input").Range("C3:C17")
    End With
   
    'duplicate search value
    Search = myrange.Cells(1, 1).Value
    If Len(Search) = 0 Then Exit Sub
   
    'check for existing record
    m = Application.Match(Search, tblDatabase.Range.Columns(1), 0)
   
    If IsError(m) Then
        'add new record
        Set myrow = tblDatabase.ListRows.Add(AlwaysInsert:=True)
       
        For Each cell In myrange.Cells
            i = i + 1
            myrow.Range(i) = UCase(cell.Value)
        Next cell
       
        'Clear Cell Contents on Completion of input
        myrange.ClearContents
       
        MsgBox Search & Chr(10) & "New Record Added To Database", 64, "New Record"
       
    Else
        'duplicate - inform user
        MsgBox Search & Chr(10) & "Value already exists", 48, "Duplicate"
       
    End If
   
End Sub

Dave
Your a diamond!
I’ll splice it in and give it a bash and let you know.
Thank you very much.
 
Upvote 0
Try

VBA Code:
Sub insertTAB_Click()
    Dim i           As Long
    Dim tblDatabase As ListObject
    Dim myrow       As ListRow
    Dim m           As Variant
    Dim Search      As String
    Dim myrange     As Range, cell As Range
   
    With ThisWorkbook
        Set tblDatabase = .Worksheets("Database").ListObjects("FixDataBase")
        'data entry input range
        Set myrange = .Worksheets("Input").Range("C3:C17")
    End With
   
    'duplicate search value
    Search = myrange.Cells(1, 1).Value
    If Len(Search) = 0 Then Exit Sub
   
    'check for existing record
    m = Application.Match(Search, tblDatabase.Range.Columns(1), 0)
   
    If IsError(m) Then
        'add new record
        Set myrow = tblDatabase.ListRows.Add(AlwaysInsert:=True)
       
        For Each cell In myrange.Cells
            i = i + 1
            myrow.Range(i) = UCase(cell.Value)
        Next cell
       
        'Clear Cell Contents on Completion of input
        myrange.ClearContents
       
        MsgBox Search & Chr(10) & "New Record Added To Database", 64, "New Record"
       
    Else
        'duplicate - inform user
        MsgBox Search & Chr(10) & "Value already exists", 48, "Duplicate"
       
    End If
   
End Sub

Dave
Morning Dave!!
Just want to say thank you for your help, works a dream.
Very much appreciate your help.
All the best
 
Upvote 0
Morning Dave!!
Just want to say thank you for your help, works a dream.
Very much appreciate your help.
All the best

most welcome & really appreciate your kind & generous feedback

Dave
 
Upvote 0

Forum statistics

Threads
1,216,131
Messages
6,129,066
Members
449,485
Latest member
greggy

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