• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Update New Value Automatically

Anand307

Member
Hi Team,


there are 3 tabs, Latest, Previous and Admin Tab
in latest tab, in cell A7 there is a new ID which is not found on Previous tab. (New value can appear in any cell, but only in column A of Latest tab))
Is there a way for this new ID's to automatically add in Admin tab, below the existing data
 

Attachments

  • Test.xlsx
    11.8 KB · Views: 3
Hi !​
  • Save your workbook as binary format .xlsb …

  • Paste this VBA event procedure to the Latest worksheet module :
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    With Target
        If .Column = 1 And .Row > 1 And .CountLarge = 1 Then _
            If IsError(Application.Match(.Value2, Sheets("Previous").UsedRange.Columns(1), 0)) Then _
                Sheets("Admin").Cells(Rows.Count, 1).End(xlUp)(2).Value2 = .Value2
    End With
End Sub
Do you like it ? So thanks to click on bottom right Like !​
 
Back
Top