Hello Needsomeinfo,
You should be able to format the data properly in Excel, so I'll
describe the steps to
1 - set up a spreadsheet that will to generate the numbers from
today's date
2 - format the cell to match the size / layout of the labels
3 - print a test page to check the result before printing the labels
#1 - Open a blank spreadsheet and enter the following formula into the
first cell (A1)
=((MONTH(TODAY())*100)+DAY(TODAY()))*1000+1
What this does is take today's date - extracts the month number puts
it into the first two digits of the result, the day number into the
next two digits, and leaves four digits for the serial number. All the
rest of the cells can have a simple formula to add one to the previous
cell in the series. So - cell A2 will read
=A1+1
cell A3 will read
=A2+1
and so on. I don't know if you have just a single column of labels -
if not, do multiple columns / rows to match your label paper. Adjust
the counting formula in each cell to match the layout of labels.
If you don't want to use today's date - change today() to a date
string (e.g., "1/1/2004"). If you don't want to start the label
sequence with one, change the +1 at the end with the "right number".
#2 - Now you will note that in months 1 through 9 (January through
September), you only get a single digit for the month. If you need two
digits, select the range of cells and use Format -> Cells -> Number,
select Custom, and enter six zeros (000000), then OK. That will force
the numbers to be displayed / printed with six digits. While in Format
-> Cells, I also suggest updating
- alignment (center vertical / horizontal) as you like it
- font (style, size)
- border (none)
- pattern (only if you want one - otherwise, leave blank)
When you change the font size, the cell will automatically grow to be
large enough for the number but won't be the right size for the
labels. With the cells still selected, then use
- Format -> Row -> Height to change the height of the row. This is in
"points" - 72 per inch, so if you measure the distance between labels
with a ruler - you can put in the right number without guessing. For
example, a 3/4 inch high spacing between the top of labels would be 54
points.
- Format -> Column -> Width to change the width of the row. The
number here is also in points.
#3 - At this point, take a white sheet of paper (the same size as the
label paper) and print a test page. Place it on the labels (aligning
the corners) to check the layout. You may have to adjust the page
margins (Page Setup -> Margins), if the number in the first cell does
not line up on the first label. After the first label is right, adjust
the row height / column width if the other labels don't line up
properly.
At this point, you should have a spreadsheet that will print the
numbers for your labels with the date / serial number increasing as
expected.
To research this answer, I used the Excel help, searching for
format number
row height
column width
date
page margin
and similar phrases to get the functions (in the first cell) and the
formatting information needed to produce the answer.
Don't hesitate to ask for clarification if this answer does not meet
your needs. Good luck with your labels.
--Maniac |
Request for Answer Clarification by
needsomeinfo-ga
on
30 Sep 2003 19:24 PDT
Your answer was for the format of Month, Date, File Number; however,
as indicated in my original question the format I need is Year, Month,
File Number (i.e., 0310001). Could you please give me a corrected
formula that will give me file numbers for this format?
Thanks
|