Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Custom Section Numbering

Is it possible to specify a formula that creates a custom numbering format.
For example, I want to set up a column that can do this:

1.1
1.2
1.3
1.4
1.5
1.6
1.7
1.8
1.9
1.10
1.11, etc.

I tried to do decimal addition, but that doesn't allow 1.10, 1.11, 1.12, etc.

Is there a way to do this using the standard features of Excel, or does
someone know the formula to program this?

Thanks.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Custom Section Numbering

One way ..

Place this in the top cell (eg: in C5), then copy down:
="1."&ROWS($1:1)
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"MAnderson" wrote:
Is it possible to specify a formula that creates a custom numbering format.
For example, I want to set up a column that can do this:

1.1
1.2
1.3
1.4
1.5
1.6
1.7
1.8
1.9
1.10
1.11, etc.

I tried to do decimal addition, but that doesn't allow 1.10, 1.11, 1.12, etc.

Is there a way to do this using the standard features of Excel, or does
someone know the formula to program this?

Thanks.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,441
Default Custom Section Numbering

=VALUE("1." & ROW())

Or

=VALUE("1." & ROW()-ROW($A$2) +1)

Change the $A$2 to the address of the first cell where this is entered.

HTH,
Bernie
MS Excel MVP


"MAnderson" wrote in message
...
Is it possible to specify a formula that creates a custom numbering format.
For example, I want to set up a column that can do this:

1.1
1.2
1.3
1.4
1.5
1.6
1.7
1.8
1.9
1.10
1.11, etc.

I tried to do decimal addition, but that doesn't allow 1.10, 1.11, 1.12, etc.

Is there a way to do this using the standard features of Excel, or does
someone know the formula to program this?

Thanks.



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,202
Default Custom Section Numbering

Is it possible to specify a formula that creates a custom numbering
format.
For example, I want to set up a column that can do this:

1.1
1.2
1.3
1.4
1.5
1.6
1.7
1.8
1.9
1.10
1.11, etc.

I tried to do decimal addition, but that doesn't allow 1.10, 1.11, 1.12,
etc.

Is there a way to do this using the standard features of Excel, or does
someone know the formula to program this?


Could number the cells down the row with normal numbers (1,2,3,4,etc.) and
then custom format the column with this...

1\.#

and set the Horizontal Alignment to Left.

Rick

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Custom Section Numbering


Thanks Max. This did what I wanted it to. The only shortcoming is that if
you add or remove a row in your spreadsheet it doesn't automatically
recalculate; I had to recopy the formula. Maybe you know a way to define the
formula to recalculate?

I thought maybe the other posts would do it, but I couldn't get any of the
other presented solutions to work.

Thanks again. If you have further input about the auto update let me know.

"Max" wrote:

One way ..

Place this in the top cell (eg: in C5), then copy down:
="1."&ROWS($1:1)
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"MAnderson" wrote:
Is it possible to specify a formula that creates a custom numbering format.
For example, I want to set up a column that can do this:

1.1
1.2
1.3
1.4
1.5
1.6
1.7
1.8
1.9
1.10
1.11, etc.

I tried to do decimal addition, but that doesn't allow 1.10, 1.11, 1.12, etc.

Is there a way to do this using the standard features of Excel, or does
someone know the formula to program this?

Thanks.



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default Custom Section Numbering

Enter 1.1 preceded by an apostrophe.

Right-click and drag down then release mouse button and "Fill Series"


Gord Dibben MS Excel MVP

On Tue, 26 Jun 2007 08:10:02 -0700, MAnderson
wrote:

Is it possible to specify a formula that creates a custom numbering format.
For example, I want to set up a column that can do this:

1.1
1.2
1.3
1.4
1.5
1.6
1.7
1.8
1.9
1.10
1.11, etc.

I tried to do decimal addition, but that doesn't allow 1.10, 1.11, 1.12, etc.

Is there a way to do this using the standard features of Excel, or does
someone know the formula to program this?

Thanks.


  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Custom Section Numbering

"MAnderson" wrote:
Thanks Max. This did what I wanted it to. The only shortcoming is that if
you add or remove a row in your spreadsheet it doesn't automatically
recalculate; I had to recopy the formula. Maybe you know a way to define the
formula to recalculate?


If you delete a row in-between the filled range, it will recalc, ie the
resulting shortened range should return the correct sequence. If it doesn't
recalc auto, check and ensure that calc mode is set to auto (via
ToolsOptionsCalculation tab). From your comments, believe your calc mode
might have been inadvertently set to manual.

If you insert new rows, you need to copy down the formula from the cell above.

I thought maybe the other posts would do it, but I couldn't get any of the
other presented solutions to work.


As the original poster, you should always try to post back to all responders
individually who offered you their thoughts. I do that if I'm the orig.
poster.

Anyway, except for Bernie's suggestions (where I think "1.10", "1.100", ..
would appear as "1.1" instead), I could get Rick's and Gord's suggestions to
work. But since Rick's/Gord's suggestions are not formulas, the numbering for
the range below would not adjust for any in-between row deletions, you would
need to re-fill the series from above.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
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
PO with sequential numbering with start / end numbering [email protected] Excel Discussion (Misc queries) 1 April 24th 07 03:38 PM
How do I print just the section a through f only? Colors New Users to Excel 3 September 4th 06 09:08 AM
custom section of filter list? Mon Excel Discussion (Misc queries) 1 August 17th 06 11:06 AM
Transpose a cut section neda5 Excel Discussion (Misc queries) 1 May 25th 06 08:39 PM
SECTION BREAK Pam Coleman Excel Discussion (Misc queries) 1 February 3rd 05 05:14 PM


All times are GMT +1. The time now is 10:48 AM.

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"