Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I want to have a column which has a formula which multiplies an absolute cell
by a number which increases incrementally. =1*$A$4 =2*$A$4 etc. up to about 100. How can I enter the consecutive number into the formula so I can replicate it? I don't want an extra column with the numbers 1-100! Thanks |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=ROW(A1)*$A$4, and copy down.
-- David Biddulph "Phippsy" wrote in message ... I want to have a column which has a formula which multiplies an absolute cell by a number which increases incrementally. =1*$A$4 =2*$A$4 etc. up to about 100. How can I enter the consecutive number into the formula so I can replicate it? I don't want an extra column with the numbers 1-100! Thanks |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I had thought of that but it doesn't necessarily start in row 1 so I have got
past that by maybe using ROW(A1)-4 if it starts in row 5 for example but then it would not work if rows were inadvertently added above so was wondering if there was a safer formula? Debbie "David Biddulph" wrote: =ROW(A1)*$A$4, and copy down. -- David Biddulph "Phippsy" wrote in message ... I want to have a column which has a formula which multiplies an absolute cell by a number which increases incrementally. =1*$A$4 =2*$A$4 etc. up to about 100. How can I enter the consecutive number into the formula so I can replicate it? I don't want an extra column with the numbers 1-100! Thanks |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Debbie,
Row(A1) will return 1 no matter what cell you start in. It will increment to Row(A2) - which will return 2 - when incremented. If you want to make sure that you can insert rows without affecting your formula, use =(ROW()-ROW($A$5)+1)*$A$4 where the formula is entered into a cell on row 5. HTH, Bernie MS Excel MVP "Phippsy" wrote in message ... I had thought of that but it doesn't necessarily start in row 1 so I have got past that by maybe using ROW(A1)-4 if it starts in row 5 for example but then it would not work if rows were inadvertently added above so was wondering if there was a safer formula? Debbie "David Biddulph" wrote: =ROW(A1)*$A$4, and copy down. -- David Biddulph "Phippsy" wrote in message ... I want to have a column which has a formula which multiplies an absolute cell by a number which increases incrementally. =1*$A$4 =2*$A$4 etc. up to about 100. How can I enter the consecutive number into the formula so I can replicate it? I don't want an extra column with the numbers 1-100! Thanks |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Of course!! What a ninny I am.
Thanks "Bernie Deitrick" wrote: Debbie, Row(A1) will return 1 no matter what cell you start in. It will increment to Row(A2) - which will return 2 - when incremented. If you want to make sure that you can insert rows without affecting your formula, use =(ROW()-ROW($A$5)+1)*$A$4 where the formula is entered into a cell on row 5. HTH, Bernie MS Excel MVP "Phippsy" wrote in message ... I had thought of that but it doesn't necessarily start in row 1 so I have got past that by maybe using ROW(A1)-4 if it starts in row 5 for example but then it would not work if rows were inadvertently added above so was wondering if there was a safer formula? Debbie "David Biddulph" wrote: =ROW(A1)*$A$4, and copy down. -- David Biddulph "Phippsy" wrote in message ... I want to have a column which has a formula which multiplies an absolute cell by a number which increases incrementally. =1*$A$4 =2*$A$4 etc. up to about 100. How can I enter the consecutive number into the formula so I can replicate it? I don't want an extra column with the numbers 1-100! Thanks |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Another one:
=ROWS($1:1)*$A$4 -- Biff Microsoft Excel MVP "Phippsy" wrote in message ... Of course!! What a ninny I am. Thanks "Bernie Deitrick" wrote: Debbie, Row(A1) will return 1 no matter what cell you start in. It will increment to Row(A2) - which will return 2 - when incremented. If you want to make sure that you can insert rows without affecting your formula, use =(ROW()-ROW($A$5)+1)*$A$4 where the formula is entered into a cell on row 5. HTH, Bernie MS Excel MVP "Phippsy" wrote in message ... I had thought of that but it doesn't necessarily start in row 1 so I have got past that by maybe using ROW(A1)-4 if it starts in row 5 for example but then it would not work if rows were inadvertently added above so was wondering if there was a safer formula? Debbie "David Biddulph" wrote: =ROW(A1)*$A$4, and copy down. -- David Biddulph "Phippsy" wrote in message ... I want to have a column which has a formula which multiplies an absolute cell by a number which increases incrementally. =1*$A$4 =2*$A$4 etc. up to about 100. How can I enter the consecutive number into the formula so I can replicate it? I don't want an extra column with the numbers 1-100! Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Consecutive numbers in 1 cell | Excel Worksheet Functions | |||
generate consecutive numbers | New Users to Excel | |||
consecutive numbers | Excel Worksheet Functions | |||
Count Consecutive Numbers in a Row | Excel Worksheet Functions | |||
Generate consecutive numbers | Excel Worksheet Functions |