Trying to get 2 lines into one cell

JONeill

Board Regular
Joined
Sep 2, 2018
Messages
58
I'm trying to get a day abbreviation and a calendar day in one cell on two lines. Using something like...

cels(row, col).value ="M" & chr(13) & day

So, centered output would be:

M T
19 20

Anyone know a way to do this?
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
This would, of course have variantions, depending on what your overall objective is.

Code:
Sub t()
Cells(1, 1) = "M" & vbLf & Format(Date, "d")
End Sub
 
Upvote 0
Code:
Sub t()
Cells(1, 1) = "M" & vbLf & Format(Date, "d")
End Sub
The M is the first letter of the day name, correct? If so, let's let VB figure that out for you...

Cells(1, 1) = Left(Format(Date, "ddd"), 1) & vblf & Day(Date)
 
Upvote 0

Forum statistics

Threads
1,223,713
Messages
6,174,041
Members
452,542
Latest member
Bricklin

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