Concatenate Msg Box Results

Beachson

Active Member
Joined
Oct 28, 2009
Messages
468
My question is ... how would I concatenate the results of the following message box code ...

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)
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
Code:
vbNewLine

Thanks for any help
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
How about
Code:
Dim Msg As String
   If ActiveCell.Offset(, 2) = "" Then
      Msg = ActiveCell.Offset(, 1)
   Else
      Msg = ActiveCell.Offset(0, 1) & vbLf & ActiveCell.Offset(0, 2)
   End If
MsgBox Msg
 
Upvote 0
Alternatively
Code:
MsgBox = Join(Application.Index(Selection.Offset(, 1).Resize(, 2).Value, 1, 0), vbLf)
 
Upvote 0
Alternatively
Code:
MsgBox = Join(Application.Index(Selection.Offset(, 1).Resize(, 2).Value, 1, 0), vbLf)

Would the same logic apply if I wanted to add
Code:
ActiveCell.Offset(0,3)
and so on or would different logic be required?
 
Upvote 0
If you want to avoid blanks lines youl'd need
Code:
MsgBox Replace(Join(Application.Index(Selection.Offset(, 1).Resize(, 3).Value, 1, 0), vbLf), Chr(10) & Chr(10), Chr(10))
 
Upvote 0

Forum statistics

Threads
1,214,840
Messages
6,121,895
Members
449,058
Latest member
Guy Boot

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top