Hi Hammeed,
Try this code...this is only rough code, short one...
-------------------------------------- Code start here --------------------------------------------
Sub addRow()
shNum = ActiveWorkbook.Sheets.Count
For Each xdate In Sheets("Master_sheet").Range("B2:B" & Range("B" & Rows.Count).End(xlUp).Row)
For i = 3 To shNum
If WorksheetFunction.CountIf(Sheets(i).Range("B:B"), xdate) = 0 Then
Sheets("Master_sheet").Range("B" & xdate.Row & ":AZ" & xdate.Row).Copy
Sheets(i).Range("B" & Rows.Count).End(xlUp).Offset(1, 0).PasteSpecial xlPasteValues
End If
Next i
Next
End Sub
---------------------------------------- end of code ----------------------------------------
Here attachment for you---->
AddDate.zip
Pichart Y.