PC Review


Reply
Thread Tools Rate Thread

Custom Section Numbering

 
 
=?Utf-8?B?TUFuZGVyc29u?=
Guest
Posts: n/a
 
      26th Jun 2007
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.
 
Reply With Quote
 
 
 
 
=?Utf-8?B?TWF4?=
Guest
Posts: n/a
 
      26th Jun 2007
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.

 
Reply With Quote
 
Bernie Deitrick
Guest
Posts: n/a
 
      26th Jun 2007
=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" <(E-Mail Removed)> wrote in message
news:8812EE80-DEC2-4EFC-958B-(E-Mail Removed)...
> 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.



 
Reply With Quote
 
Rick Rothstein \(MVP - VB\)
Guest
Posts: n/a
 
      26th Jun 2007
> 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

 
Reply With Quote
 
=?Utf-8?B?TUFuZGVyc29u?=
Guest
Posts: n/a
 
      26th Jun 2007

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.

 
Reply With Quote
 
Gord Dibben
Guest
Posts: n/a
 
      26th Jun 2007
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
<(E-Mail Removed)> 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.


 
Reply With Quote
 
=?Utf-8?B?TWF4?=
Guest
Posts: n/a
 
      27th Jun 2007
"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
Tools>Options>Calculation 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 With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
how to control section numbering - please help Adam Microsoft Word New Users 2 26th Aug 2011 11:22 AM
Word 2007:Continuous numbering in header, section numbering in foo wjprice Microsoft Word New Users 12 30th Jul 2009 03:33 PM
section numbering =?Utf-8?B?Q2F0ZXJpbmE=?= Microsoft Access 1 17th Nov 2006 09:14 PM
Section numbering in TOC =?Utf-8?B?TWFyayBOaXhvbg==?= Microsoft Word Document Management 0 9th Oct 2006 01:48 AM
How to get rid of numbering in one section? Tom Duprex Microsoft Word New Users 2 18th Oct 2004 11:52 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 12:39 AM.