#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Number Bullets

I am trying to have number bullets in Excel. I am able to use the function
concatenate, but it does not increment the numbers, such as

1
1.1
1.1.1, 1.1.1, 1.1.1 (I need 1.1.1, then 1.1.2, and 1.1.3).
This is an example of what I am using =CONCATENATE($B$4,".",$I$2). The $B$4
value is 1.1 and $I$2 value is 1

Is it possible to do in excel?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 73
Default Number Bullets

Instead of CONCATENATE, you can just build the string:

=$B$4 & "." & $I$2

There is no way to increment automatically, but you can either refer to
another part of the sheet in your formula that has incremental numbers
ORyou can try using the ROW command which will increment as you copy
down:

= $B$4 & "." & ROW($A1)

If you copy this formula down, the $A1 reference will increment along
with the row value.

Hope that helps...

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Number Bullets

Thanks for your help, it works.

I am also using the following code. Only difference is that my cell B2, B3,
B4 & so on have the value 1,2,3 etc.

=CONCATENATE($D$4,".",B2)
=CONCATENATE($D$4,".",B3)


" wrote:

Instead of CONCATENATE, you can just build the string:

=$B$4 & "." & $I$2

There is no way to increment automatically, but you can either refer to
another part of the sheet in your formula that has incremental numbers
ORyou can try using the ROW command which will increment as you copy
down:

= $B$4 & "." & ROW($A1)

If you copy this formula down, the $A1 reference will increment along
with the row value.

Hope that helps...


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 380
Default Number Bullets

=$B$4&"."&$I$4+ROW(A1)-1

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)

"Timmy" wrote in message
...
Thanks for your help, it works.

I am also using the following code. Only difference is that my cell B2,

B3,
B4 & so on have the value 1,2,3 etc.

=CONCATENATE($D$4,".",B2)
=CONCATENATE($D$4,".",B3)


" wrote:

Instead of CONCATENATE, you can just build the string:

=$B$4 & "." & $I$2

There is no way to increment automatically, but you can either refer to
another part of the sheet in your formula that has incremental numbers
ORyou can try using the ROW command which will increment as you copy
down:

= $B$4 & "." & ROW($A1)

If you copy this formula down, the $A1 reference will increment along
with the row value.

Hope that helps...




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
Excell-How to add the number of cells containing text? = a sum aruba64taw Excel Worksheet Functions 2 December 21st 05 09:51 AM
Generating (in a random order)each number once from a given number Neil Goldwasser Excel Worksheet Functions 2 December 2nd 05 11:27 PM
Change number format from text to number? Scot New Users to Excel 2 December 1st 05 04:15 PM
vlookup with more than number to be retrieved martelie Excel Worksheet Functions 3 October 14th 05 12:50 PM
Count Number of Characters in a cell? AHJuncti Excel Discussion (Misc queries) 2 June 16th 05 07:39 PM


All times are GMT +1. The time now is 06: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"