as both workbooks are open and saved to where currently saved no chnage in file names of paths is required.
as for trouble and work data stored elsewhere, perhaps this can be just as a comment attached to the cell in the conventional comment way. Just hover over the cell to see the info.
edit code as highlighted in red to add info as a comment
Dim cmt As Comment
Application.ScreenUpdating = False
' now loop through new daily tags and add to master
For lDailyRwIdx = LBound(vDailyData, 2) To UBound(vDailyData, 2)
bFound = False
For lMasterRwIdx = LBound(vMasterData, 2) To UBound(vMasterData, 2)
If vDailyData(2, lDailyRwIdx) = vMasterData(2, lMasterRwIdx) Then
bFound = True
vDailyData(1, lDailyRwIdx).Value = "Logged"
Set rTarget = vMasterData(1, lMasterRwIdx)
With rTarget
lNextCol = .Cells(1, .Parent.Columns.Count).End(xlToLeft).Column + 1
With .Cells(1, lNextCol)
.Value = Split(vDailyData(3, lDailyRwIdx), vbLf)(0)
Set cmt = .AddComment
With cmt
.Text vDailyData(3, lDailyRwIdx)
.Shape.TextFrame.AutoSize = True
.Visible = False
End With .ColumnWidth = 200
.EntireRow.AutoFit
.EntireColumn.AutoFit
End With
End With
Exit For
End If
Next lMasterRwIdx
If bFound = False Then
vDailyData(1, lDailyRwIdx).Value = "Invalid Equipment Tag"
lUnmatched = lUnmatched + 1
Else
lMatched = lMatched + 1
End If
Next lDailyRwIdx
Application.ScreenUpdating = True
Bookmarks