I have been asked if it is possible to add a cell comment with a list from a range of cells, the range will vary in size.
I have written this so far, but it only adds the next cell content not all the cells that has content in column F (only expecting around 15 items max).
I have written this so far, but it only adds the next cell content not all the cells that has content in column F (only expecting around 15 items max).
Sub tryme()
'Healey21 looking to use dynamic list for comments
'Purpose to fill the comment with range of cells which will vary in size
Range("n2").ClearComments
Range("n2").AddComment
Range("N2").Comment.Text Range("F2").Value & Chr(10) & Range("F2").Offset(1, 0).Text
End Sub