Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
I was wondering if there is a way to number within a cell automatically with out having to do alt enter? ex: 1. 2..etc. thanks |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
Put this in a cell and drag down =ROW(A1) Mike "automatic numbering" wrote: Hi, I was wondering if there is a way to number within a cell automatically with out having to do alt enter? ex: 1. 2..etc. thanks |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You could try this macro (it will ask you how many numbers to insert into
the cell and then do it, auto-fitting the height of the cell afterwards)... Sub InsertNumbers() Dim X As Long Dim HowMany As Long Dim Counter As String HowMany = InputBox("How many numbers?") If IsNumeric(HowMany) Then For X = 1 To HowMany Counter = Counter & X If X < HowMany Then Counter = Counter & vbLf Next With ActiveCell .Cells.WrapText = True .Value = Counter .Rows.AutoFit End With End If End Sub -- Rick (MVP - Excel) "automatic numbering" <automatic wrote in message ... Hi, I was wondering if there is a way to number within a cell automatically with out having to do alt enter? ex: 1. 2..etc. thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to do Numbering with in a cell | Excel Discussion (Misc queries) | |||
How to use bullets & numbering within a cell ? | Excel Discussion (Misc queries) | |||
How to get time to update automatically and continuos | Excel Worksheet Functions | |||
Cell numbering | Excel Discussion (Misc queries) | |||
Numbering a Cell | New Users to Excel |