Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
In column F, I would like to add a number for each row
F1 =1 F2 =2 down to the last row, which is unknown. TIA Gerry |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
you can use this from tom's previous post, assuming the data is in column a
Option Explicit Dim rng As Range Sub test() Set rng = Range(Cells(1, 1), Cells(1, 1).End(xlDown)) rng.Offset(0, 5).Formula = "=Row()" End Sub -- Gary "Gerry" wrote in message oups.com... In column F, I would like to add a number for each row F1 =1 F2 =2 down to the last row, which is unknown. TIA Gerry |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks Gary that was too easy.
|
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Changing A Column Of Text numbers To True Numbers: How ? | New Users to Excel | |||
How do I convert a column of positive numbers to negitive numbers | Excel Worksheet Functions | |||
Excel, change column of negative numbers to positive numbers? | New Users to Excel | |||
Changing column of numbers made of formulas to just numbers | Excel Discussion (Misc queries) | |||
Excel Formula - Add column of numbers but ignore negative numbers | Excel Worksheet Functions |