Thread: Number Bullets
View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bob Phillips Bob Phillips is offline
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...