Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 505
Default Excel 2002: How to speed fill repeatedly ?

Dear Sir,

I need to speed fill 1 to 5 in column B repeatedly as illustrated:


A B C
1 1 xxxxx
2 2 xxxxx
3 3 xxxxx
4 4 xxxxx
5 5 xxxxx
6 1 xxxxx
7 2 xxxxx
8 3 xxxxx
9 4 xxxxx
10 5 xxxxx
11 1 xxxxx
12 2 xxxxx
13 3 xxxxx
14 4 xxxxx
15 5 xxxxx
16 1 xxxxx
17 2 xxxxx
18 3 xxxxx
19 4 xxxxx
20 5 xxxxx

May I know what formula must I input at cell B1 and copy down to get the
straight answer ?

Thanks

Low
--
A36B58K641
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,316
Default Excel 2002: How to speed fill repeatedly ?

In the first cell enter a 1 and in the cell directly below it enter the
following formula, substituting A1 for the the first cell in the your column:

=IF(A1=5,1,A1+1)

Copy down as far as necessary.

Hope this helps...
--
Kevin Backmann


"Mr. Low" wrote:

Dear Sir,

I need to speed fill 1 to 5 in column B repeatedly as illustrated:


A B C
1 1 xxxxx
2 2 xxxxx
3 3 xxxxx
4 4 xxxxx
5 5 xxxxx
6 1 xxxxx
7 2 xxxxx
8 3 xxxxx
9 4 xxxxx
10 5 xxxxx
11 1 xxxxx
12 2 xxxxx
13 3 xxxxx
14 4 xxxxx
15 5 xxxxx
16 1 xxxxx
17 2 xxxxx
18 3 xxxxx
19 4 xxxxx
20 5 xxxxx

May I know what formula must I input at cell B1 and copy down to get the
straight answer ?

Thanks

Low
--
A36B58K641

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default Excel 2002: How to speed fill repeatedly ?

=MOD(ROW()-1,5)+1
--
David Biddulph

"Mr. Low" wrote in message
...
Dear Sir,

I need to speed fill 1 to 5 in column B repeatedly as illustrated:


A B C
1 1 xxxxx
2 2 xxxxx
3 3 xxxxx
4 4 xxxxx
5 5 xxxxx
6 1 xxxxx
7 2 xxxxx
8 3 xxxxx
9 4 xxxxx
10 5 xxxxx
11 1 xxxxx
12 2 xxxxx
13 3 xxxxx
14 4 xxxxx
15 5 xxxxx
16 1 xxxxx
17 2 xxxxx
18 3 xxxxx
19 4 xxxxx
20 5 xxxxx

May I know what formula must I input at cell B1 and copy down to get the
straight answer ?

Thanks

Low
--
A36B58K641



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Excel 2002: How to speed fill repeatedly ?

Without a formula...........

B1:B5 enter 1,2,3,4,5

Select all five cells by right-click and drag down as far as you want.

Release button and "Copy Cells"


Gord Dibben MS Excel MVP

On Wed, 20 Feb 2008 06:01:01 -0800, Mr. Low
wrote:

Dear Sir,

I need to speed fill 1 to 5 in column B repeatedly as illustrated:


A B C
1 1 xxxxx
2 2 xxxxx
3 3 xxxxx
4 4 xxxxx
5 5 xxxxx
6 1 xxxxx
7 2 xxxxx
8 3 xxxxx
9 4 xxxxx
10 5 xxxxx
11 1 xxxxx
12 2 xxxxx
13 3 xxxxx
14 4 xxxxx
15 5 xxxxx
16 1 xxxxx
17 2 xxxxx
18 3 xxxxx
19 4 xxxxx
20 5 xxxxx

May I know what formula must I input at cell B1 and copy down to get the
straight answer ?

Thanks

Low


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 505
Default Excel 2002: How to speed fill repeatedly ?

Hello Kevin,

Thanks for the formula.

It works well,

Best Regards

Low

--
A36B58K641


"Kevin B" wrote:

In the first cell enter a 1 and in the cell directly below it enter the
following formula, substituting A1 for the the first cell in the your column:

=IF(A1=5,1,A1+1)

Copy down as far as necessary.

Hope this helps...
--
Kevin Backmann


"Mr. Low" wrote:

Dear Sir,

I need to speed fill 1 to 5 in column B repeatedly as illustrated:


A B C
1 1 xxxxx
2 2 xxxxx
3 3 xxxxx
4 4 xxxxx
5 5 xxxxx
6 1 xxxxx
7 2 xxxxx
8 3 xxxxx
9 4 xxxxx
10 5 xxxxx
11 1 xxxxx
12 2 xxxxx
13 3 xxxxx
14 4 xxxxx
15 5 xxxxx
16 1 xxxxx
17 2 xxxxx
18 3 xxxxx
19 4 xxxxx
20 5 xxxxx

May I know what formula must I input at cell B1 and copy down to get the
straight answer ?

Thanks

Low
--
A36B58K641



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 505
Default Excel 2002: How to speed fill repeatedly ?

Hello David,

Thanks for the formula. It works

Low

--
A36B58K641


"David Biddulph" wrote:

=MOD(ROW()-1,5)+1
--
David Biddulph

"Mr. Low" wrote in message
...
Dear Sir,

I need to speed fill 1 to 5 in column B repeatedly as illustrated:


A B C
1 1 xxxxx
2 2 xxxxx
3 3 xxxxx
4 4 xxxxx
5 5 xxxxx
6 1 xxxxx
7 2 xxxxx
8 3 xxxxx
9 4 xxxxx
10 5 xxxxx
11 1 xxxxx
12 2 xxxxx
13 3 xxxxx
14 4 xxxxx
15 5 xxxxx
16 1 xxxxx
17 2 xxxxx
18 3 xxxxx
19 4 xxxxx
20 5 xxxxx

May I know what formula must I input at cell B1 and copy down to get the
straight answer ?

Thanks

Low
--
A36B58K641




  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 505
Default Excel 2002: How to speed fill repeatedly ?

Hello Gord,

Thanks for the tip. It works.

Low
--
A36B58K641


"Gord Dibben" wrote:

Without a formula...........

B1:B5 enter 1,2,3,4,5

Select all five cells by right-click and drag down as far as you want.

Release button and "Copy Cells"


Gord Dibben MS Excel MVP

On Wed, 20 Feb 2008 06:01:01 -0800, Mr. Low
wrote:

Dear Sir,

I need to speed fill 1 to 5 in column B repeatedly as illustrated:


A B C
1 1 xxxxx
2 2 xxxxx
3 3 xxxxx
4 4 xxxxx
5 5 xxxxx
6 1 xxxxx
7 2 xxxxx
8 3 xxxxx
9 4 xxxxx
10 5 xxxxx
11 1 xxxxx
12 2 xxxxx
13 3 xxxxx
14 4 xxxxx
15 5 xxxxx
16 1 xxxxx
17 2 xxxxx
18 3 xxxxx
19 4 xxxxx
20 5 xxxxx

May I know what formula must I input at cell B1 and copy down to get the
straight answer ?

Thanks

Low



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
Excel 2002 : Can I speed fill tabs ? Mr. Low Excel Discussion (Misc queries) 4 September 11th 07 05:56 PM
Excel 2002 : How to speed up opening of XML file ? Mr. Low Excel Discussion (Misc queries) 0 September 1st 07 02:30 PM
Excel 2002 : How to speed block cells ? Mr. Low Excel Discussion (Misc queries) 7 May 29th 07 03:37 PM
Excel 2002 : Is there any speed fill formula ? Mr. Low Excel Discussion (Misc queries) 7 March 14th 07 01:23 PM
Speed fill function for MS Ecel 2007 (Beta) Mr. Low Excel Worksheet Functions 0 June 12th 06 03:06 PM


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