Re: $$Excel-Macros$$ Numbering

2011-07-13 Thread Kal xcel
Subject: Re: $$Excel-Macros$$ Numbering To: excel-macros@googlegroups.com Date: Saturday, July 9, 2011, 3:59 AM Use Simple formula =COUNTIF(A$1:A1,A1) Please let me know if you looking for this only Regards Santosh Bahuguna On Fri, Jul 8, 2011 at 8:33 AM, Rajan_Verma rajanverma1

Re: $$Excel-Macros$$ Numbering

2011-07-13 Thread karan 1237
1 IN A5,3 IN A6. i.e., REQUIRED NUMBERING FILLED IN EVEN CELLS, AND ODD CELLS HAVE 1 AM I RIGHT? R.KARUNANITHI --- On *Sat, 7/9/11, santosh bahuguna santoshbahug...@gmail.com*wrote: From: santosh bahuguna santoshbahug...@gmail.com Subject: Re: $$Excel-Macros$$ Numbering To: excel-macros

Re: $$Excel-Macros$$ Numbering

2011-07-10 Thread santosh bahuguna
FILLED IN EVEN CELLS, AND ODD CELLS HAVE 1 AM I RIGHT? R.KARUNANITHI --- On *Sat, 7/9/11, santosh bahuguna santoshbahug...@gmail.com* wrote: From: santosh bahuguna santoshbahug...@gmail.com Subject: Re: $$Excel-Macros$$ Numbering To: excel-macros@googlegroups.com Date: Saturday, July 9, 2011

Re: $$Excel-Macros$$ Numbering

2011-07-09 Thread karunanithi ramaswamy
Subject: Re: $$Excel-Macros$$ Numbering To: excel-macros@googlegroups.com Date: Saturday, July 9, 2011, 3:59 AM Use Simple formula =COUNTIF(A$1:A1,A1) Please let me know if you looking for this only Regards Santosh Bahuguna On Fri, Jul 8, 2011 at 8:33 AM, Rajan_Verma rajanverma1

Re: $$Excel-Macros$$ Numbering

2011-07-08 Thread ashish koul
a2= a1+1 On Fri, Jul 8, 2011 at 4:35 PM, Kal xcel kalx...@gmail.com wrote: Dear Experts, I want the formula for below mention query... user will put 100 in A1, from A2 autometically numbering will start like this A21 A32 A43 . . . . till 100 What will be

$$Excel-Macros$$ Numbering

2011-07-08 Thread Kal xcel
Dear Experts, I want the formula for below mention query... user will put 100 in A1, from A2 autometically numbering will start like this A21 A32 A43 . . . . till 100 What will be the formula?? Please help Thanks in advance Kalyan Chatterjee --

Re: $$Excel-Macros$$ Numbering

2011-07-08 Thread NOORAIN ANSARI
kalyan babu. Please try it..also =IF(A2=,,COUNTA($A$2:A2)) On Fri, Jul 8, 2011 at 4:35 PM, Kal xcel kalx...@gmail.com wrote: Dear Experts, I want the formula for below mention query... user will put 100 in A1, from A2 autometically numbering will start like this A2

Re: $$Excel-Macros$$ Numbering

2011-07-08 Thread Kal xcel
Dear Ashish, I want the numbering will start frm 1 and it will end at the number given by user, like if user put 100 so numbering 1,2,3,4,5,6,7100, if user put 200 numbering will start from 1,2,3,4,5,6,7,8,9,10200. I think you got what I am saying. Thanks in advance

Re: $$Excel-Macros$$ Numbering

2011-07-08 Thread ashish koul
try this On Fri, Jul 8, 2011 at 5:40 PM, Kal xcel kalx...@gmail.com wrote: Dear Ashish, I want the numbering will start frm 1 and it will end at the number given by user, like if user put 100 so numbering 1,2,3,4,5,6,7100, if user put 200 numbering will start from

Re: $$Excel-Macros$$ Numbering

2011-07-08 Thread NOORAIN ANSARI
Dear Kalyan, Please try it Private Sub Worksheet_SelectionChange(ByVal Target As Range) Dim i, j, k As Long i = Sheet1.Range(A1).Value Sheet1.Range(A2:A1000).Clear For j = 2 To i + 1 Sheet1.Cells(j, 1).Value = k + 1 k = k + 1 Next End Sub -- Thanks regards, Noorain Ansari

RE: $$Excel-Macros$$ Numbering

2011-07-08 Thread Rajan_Verma
Of NOORAIN ANSARI Sent: Friday, July 08, 2011 5:38 PM To: excel-macros@googlegroups.com Cc: Kal xcel Subject: Re: $$Excel-Macros$$ Numbering kalyan babu. Please try it..also =IF(A2=,,COUNTA($A$2:A2)) On Fri, Jul 8, 2011 at 4:35 PM, Kal xcel kalx...@gmail.com wrote: Dear Experts

Re: $$Excel-Macros$$ Numbering

2011-07-08 Thread santosh bahuguna
*To:* excel-macros@googlegroups.com *Cc:* Kal xcel *Subject:* Re: $$Excel-Macros$$ Numbering ** ** kalyan babu. Please try it..also =IF(A2=,,COUNTA($A$2:A2)) On Fri, Jul 8, 2011 at 4:35 PM, Kal xcel kalx...@gmail.com wrote: Dear Experts, I

Re: $$Excel-Macros$$ Numbering

2011-07-08 Thread santosh bahuguna
:38 PM *To:* excel-macros@googlegroups.com *Cc:* Kal xcel *Subject:* Re: $$Excel-Macros$$ Numbering ** ** kalyan babu. Please try it..also =IF(A2=,,COUNTA($A$2:A2)) On Fri, Jul 8, 2011 at 4:35 PM, Kal xcel kalx...@gmail.com wrote: Dear Experts

Re: $$Excel-Macros$$ Numbering

2011-07-08 Thread Haseeb Avarakkan
A2, copy down as many needed =IF(ROWS(A$2:A2)=A$1,ROWS(A$2:A2),) Or, If you are inserting rows between A2 the last rows this will not work as expected, so use this one; =IF(COUNT(A$1:A1)=A$1,COUNT(A$1:A1),) copy down as many needed HTH Haseeb --