Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
To enter multiples line in a cell; enter data to a cell and without pressing
Enter press Alt+Enter and you can continue entering data. To enter current date the shortcut is (Ctrl key + Semilon key) If this post helps click Yes --------------- Jacob Skaria "MSW Intern" wrote: Where do I input that formula on my spreadsheet? If I highlight cell A13 and type that in, then I'm not able to input the dates without erasing the formula...? "Jacob Skaria" wrote: Try the below Sub Macro() Range("A13") = Range("A13") & vbLf & Date End Sub If you want to keep the height as such Sub Macro() Dim varHeight as Variant varHeight = Range("A13").RowHeight Range("A13") = Range("A13") & vbLf & Date Range("A13").RowHeight = varHeight End Sub If this post helps click Yes --------------- Jacob Skaria "MSW Intern" wrote: Is there a way to list multiple dates within one cell? I have a very complex spreadsheet and can't afford individual cells for the one item that requires multiple dates be input into it. When I tried just listing more than one date, the numbers went over the cell boundaries into adjoining cells. I need it to instead either wrap to a second line within the same cell (making the cell longer) or do something similar that doesn't affect the surrounding cells but keeps all the information. Any help appreciated! |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks so much! That was very very helpful!
"Jacob Skaria" wrote: To enter multiples line in a cell; enter data to a cell and without pressing Enter press Alt+Enter and you can continue entering data. To enter current date the shortcut is (Ctrl key + Semilon key) If this post helps click Yes --------------- Jacob Skaria "MSW Intern" wrote: Where do I input that formula on my spreadsheet? If I highlight cell A13 and type that in, then I'm not able to input the dates without erasing the formula...? "Jacob Skaria" wrote: Try the below Sub Macro() Range("A13") = Range("A13") & vbLf & Date End Sub If you want to keep the height as such Sub Macro() Dim varHeight as Variant varHeight = Range("A13").RowHeight Range("A13") = Range("A13") & vbLf & Date Range("A13").RowHeight = varHeight End Sub If this post helps click Yes --------------- Jacob Skaria "MSW Intern" wrote: Is there a way to list multiple dates within one cell? I have a very complex spreadsheet and can't afford individual cells for the one item that requires multiple dates be input into it. When I tried just listing more than one date, the numbers went over the cell boundaries into adjoining cells. I need it to instead either wrap to a second line within the same cell (making the cell longer) or do something similar that doesn't affect the surrounding cells but keeps all the information. Any help appreciated! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
couting occurence using multiple dates in single cell | Excel Discussion (Misc queries) | |||
finding multiple code dates for multiple item number | Excel Worksheet Functions | |||
Compare multiple dates, can enumerate cell based on most recent date | Excel Worksheet Functions | |||
Multiple dates, times, or formulas in a single cell | Excel Discussion (Misc queries) | |||
the dates on cell format make different dates. | New Users to Excel |