My question is ... how would I concatenate the results of the following message box code ...
The coded above makes the message box longer when there is no text found in
I would like the box to be only as big as is necessary based on the results. I need to have each result appear underneath the previous. Which is the reason for
Thanks for any help
Code:
MsgBox ActiveCell.Offset(0,1) & vbNewLine & ActiveCell.Offset(0,2)
The coded above makes the message box longer when there is no text found in
Code:
ActiveCell.Offset(0,2)
Code:
vbNewLine
Thanks for any help