Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5
Default How do I create a list of sequential numbers in Excel 2003?

I need to print on 3 x 5 cards columns of sequential numbers. I have set up a
print area so that the columns fit neatly on the card. It's a pain to type
the numbers in manually, but they do not exist in a database. Is there a
formula for typing in the first number in the top left cell and the ending
number in the bottom right cell, and the program automatically filling in the
columns with the correct numbers? Even if it can be done only one column at a
time, it would be a huge help.
--
kateinmo
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 213
Default How do I create a list of sequential numbers in Excel 2003?

I need to print on 3 x 5 cards columns of sequential numbers. I have
set up a print area so that the columns fit neatly on the card. It's a
pain to type the numbers in manually, but they do not exist in a
database. Is there a formula for typing in the first number in the top
left cell and the ending number in the bottom right cell, and the
program automatically filling in the columns with the correct numbers?


Maybe something like the csv file below would help.

Notice that if all the numbers are sequential integers only the first need
be typed in.

--------------- cut here --------------
95014,=A1+10,=B1+10,=C1+10,=D1+10
=A1+1,=A2+10,=B2+10,=C2+10,=D2+10
=A2+1,=A3+10,=B3+10,=C3+10,=D3+10
=A3+1,=A4+10,=B4+10,=C4+10,=D4+10
=A4+1,=A5+10,=B5+10,=C5+10,=D5+10
=A5+1,=A6+10,=B6+10,=C6+10,=D6+10
=A6+1,=A7+10,=B7+10,=C7+10,=D7+10
=A7+1,=A8+10,=B8+10,=C8+10,=D8+10
=A8+1,=A9+10,=B9+10,=C9+10,=D9+10
=A9+1,=A10+10,=B10+10,=C10+10,=D10+10
  #3   Report Post  
Posted to microsoft.public.excel.misc
Max Max is offline
external usenet poster
 
Posts: 9,221
Default How do I create a list of sequential numbers in Excel 2003?

Another formulas option to play with ..

Assume the 3x5 grid is in B2:D6,
and the starting number for the grid will be input in B1

Place in B2:
=IF($B$1="","",$B$1+ROW(A1)*3-3+MOD(COLUMN(A1)-1,3))
Copy B2 across to D2, fill down to D6.

Test it out by inputting a start number say, 100 into B1.
You'd get the required results in B2:D6, ie:

100 101 102
103 104 105
106 107 108
109 110 111
112 113 114

--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"kateinmo" wrote:
I need to print on 3 x 5 cards columns of sequential numbers. I have set up a
print area so that the columns fit neatly on the card. It's a pain to type
the numbers in manually, but they do not exist in a database. Is there a
formula for typing in the first number in the top left cell and the ending
number in the bottom right cell, and the program automatically filling in the
columns with the correct numbers? Even if it can be done only one column at a
time, it would be a huge help.
--
kateinmo

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5
Default How do I create a list of sequential numbers in Excel 2003?

Thanks. I'll give it a try tomorrow when I'm more clear headed. Almost 1 a.m.
is not the time to start learning a new procedure!
--
kateinmo


"MyVeryOwnSelf" wrote:

I need to print on 3 x 5 cards columns of sequential numbers. I have
set up a print area so that the columns fit neatly on the card. It's a
pain to type the numbers in manually, but they do not exist in a
database. Is there a formula for typing in the first number in the top
left cell and the ending number in the bottom right cell, and the
program automatically filling in the columns with the correct numbers?


Maybe something like the csv file below would help.

Notice that if all the numbers are sequential integers only the first need
be typed in.

--------------- cut here --------------
95014,=A1+10,=B1+10,=C1+10,=D1+10
=A1+1,=A2+10,=B2+10,=C2+10,=D2+10
=A2+1,=A3+10,=B3+10,=C3+10,=D3+10
=A3+1,=A4+10,=B4+10,=C4+10,=D4+10
=A4+1,=A5+10,=B5+10,=C5+10,=D5+10
=A5+1,=A6+10,=B6+10,=C6+10,=D6+10
=A6+1,=A7+10,=B7+10,=C7+10,=D7+10
=A7+1,=A8+10,=B8+10,=C8+10,=D8+10
=A8+1,=A9+10,=B9+10,=C9+10,=D9+10
=A9+1,=A10+10,=B10+10,=C10+10,=D10+10

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5
Default How do I create a list of sequential numbers in Excel 2003?

Thanks. I'll try this solution, too, tomorrow. My brain doesn't learn new
techniques at 1 a.m.!
--
kateinmo


"Max" wrote:

Another formulas option to play with ..

Assume the 3x5 grid is in B2:D6,
and the starting number for the grid will be input in B1

Place in B2:
=IF($B$1="","",$B$1+ROW(A1)*3-3+MOD(COLUMN(A1)-1,3))
Copy B2 across to D2, fill down to D6.

Test it out by inputting a start number say, 100 into B1.
You'd get the required results in B2:D6, ie:

100 101 102
103 104 105
106 107 108
109 110 111
112 113 114

--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"kateinmo" wrote:
I need to print on 3 x 5 cards columns of sequential numbers. I have set up a
print area so that the columns fit neatly on the card. It's a pain to type
the numbers in manually, but they do not exist in a database. Is there a
formula for typing in the first number in the top left cell and the ending
number in the bottom right cell, and the program automatically filling in the
columns with the correct numbers? Even if it can be done only one column at a
time, it would be a huge help.
--
kateinmo

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
trying to store non-zero numbers from a list into sequential cells Ausseshooter New Users to Excel 4 February 4th 07 01:06 AM
Renaming Sequential Rows to create serial numbers forceten32 Excel Worksheet Functions 4 November 13th 05 11:17 PM
How do I create a list of sequential numbers using Excel or Acces. Clueless Excel Discussion (Misc queries) 1 April 5th 05 03:08 PM
How do I assign sequential numbers in an Excel 2003 PO template? skiusa Excel Worksheet Functions 1 March 28th 05 10:57 PM
list of sequential numbers kellyaek Excel Discussion (Misc queries) 2 December 3rd 04 04:45 PM


All times are GMT +1. The time now is 05:30 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"