Code displaying as single line in email

Nothnless

Board Regular
Joined
Apr 28, 2016
Messages
142
Hi, the following code displays as a single line

Code:
    If Range("B8").Value = "" Then
    Line1 = "Blank."
    Else
    Line1 = Range("B8").Value & "   " & Range("C8").Value
    End If
    
    If Range("B9").Value = "" Then
    Line2 = "Blank."
    Else
    Line2 = Range("B9").Value & "   " & Range("C9").Value
    End If

Obviously cells B8 and B9 are separate lines. How can I make the codes output display as such?
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Maybe...UNTESTED
Code:
If Range("B8").Value = "" Then
    Line1 = "Blank."
    Else
    Line1 = Range("B8").Value
    line2 = Range("C8").Value
    End If
 
Upvote 0

Forum statistics

Threads
1,216,586
Messages
6,131,571
Members
449,655
Latest member
Anil K Sonawane

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