Another method is to have a second sheet in Dashbord.xlsm and call it say Comments. It would be identical to the Dashboard sheet except the formulas link to column C instead of column B in the Changelog workbook. Then run the macro below (simular to Jakobshavn's) to update the comments on the Dashboard sheet. You could hide the Comments worksheet if you wanted.
Sub Set_Comments()
Dim rng As Range, cell As Range
Set rng = ThisWorkbook.Sheets("Dashboard").UsedRange.SpecialCells(xlCellTypeFormulas)
rng.ClearComments
For Each cell In rng
If Sheets("Comments").Range(cell.Address) <> 0 Then
cell.AddComment
cell.Comment.Text Sheets("Comments").Range(cell.Address).Value
End If
Next cell
End Sub
Bookmarks