Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Trying to vertically format blocks of text each containing 4 characters in
length. Shown here as received in "horizontal format". ABCD GFDR BGVH ARDG etc. etc. These must be formatted vertically in one cell. I manually type ALT enter in the space between each thereby formatting down each 4 to make a vertical column in one cell... ABCD GFDR BGVD ARGD Can you suggest a more automated way to do this formatting of text rather than having to go typing ALT ENTER each time? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Private Sub Worksheet_SelectionChange(ByVal Target As Range) If Target.Address = "$A$1" Then Target.Value = Replace(Target.Value, " ", Chr(10)) End If End Sub 'This is worksheet event code, which means that it needs to be 'placed in the appropriate worksheet code module, not a standard 'code module. To do this, right-click on the sheet tab, select 'the View Code option from the menu, and paste the code in. -- --- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "EMZAM" wrote in message ... Trying to vertically format blocks of text each containing 4 characters in length. Shown here as received in "horizontal format". ABCD GFDR BGVH ARDG etc. etc. These must be formatted vertically in one cell. I manually type ALT enter in the space between each thereby formatting down each 4 to make a vertical column in one cell... ABCD GFDR BGVD ARGD Can you suggest a more automated way to do this formatting of text rather than having to go typing ALT ENTER each time? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Format Cells... Alignment Degrees -90
-- Gary''s Student - gsnu200761 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If you set column width to length of four characters and format cells "wrap
ON" then Excel will display cell content in the required way. Regards, Stefi €žEMZAM€ť ezt Ă*rta: Trying to vertically format blocks of text each containing 4 characters in length. Shown here as received in "horizontal format". ABCD GFDR BGVH ARDG etc. etc. These must be formatted vertically in one cell. I manually type ALT enter in the space between each thereby formatting down each 4 to make a vertical column in one cell... ABCD GFDR BGVD ARGD Can you suggest a more automated way to do this formatting of text rather than having to go typing ALT ENTER each time? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Text in cells is cut off vertically when i Print | Excel Discussion (Misc queries) | |||
How break column formatting to vary cell widths vertically? | Excel Worksheet Functions | |||
How do I Type vertically in a cell? | Excel Discussion (Misc queries) | |||
How do i rotate the text TO FIT THE Paper vertically? | New Users to Excel | |||
how to type a text vertically in a excell cell | Excel Discussion (Misc queries) |