Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 55
Default Filling down text in increments of three

How can I fill a worksheet all the way down with the following:
A1=2 steps
A2=2 steps
A3=2 steps
A4=3 steps
A5=3 steps
A6=3 steps
A7=4 steps
A8=4 steps
A9=4 steps
And so on, each in increments of three, all the way down the sheet. I asked
the same question yesterday for numbers only without text and got some
excellent formulas for that. Today I specifically need to enter the number
and the text in the same cell - "4 steps". Thanks. Excel 2003

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 523
Default Filling down text in increments of three

Do you want the text "2 Steps" to appear in A1 etc?

If so, put the formula =(INT((ROW(B1)-1)/3)+2)&" Steps"
in cell A1 and copy it down.

Sam

"Josh W" wrote:

How can I fill a worksheet all the way down with the following:
A1=2 steps
A2=2 steps
A3=2 steps
A4=3 steps
A5=3 steps
A6=3 steps
A7=4 steps
A8=4 steps
A9=4 steps
And so on, each in increments of three, all the way down the sheet. I asked
the same question yesterday for numbers only without text and got some
excellent formulas for that. Today I specifically need to enter the number
and the text in the same cell - "4 steps". Thanks. Excel 2003

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 99
Default Filling down text in increments of three

Hi,

Or just use whatever formula you were already using, and apply a custom
nuber format of

general" steps"

which will automatically add a space followed by the word steps to any
number in those cells.

Dave

"Josh W" wrote:

How can I fill a worksheet all the way down with the following:
A1=2 steps
A2=2 steps
A3=2 steps
A4=3 steps
A5=3 steps
A6=3 steps
A7=4 steps
A8=4 steps
A9=4 steps
And so on, each in increments of three, all the way down the sheet. I asked
the same question yesterday for numbers only without text and got some
excellent formulas for that. Today I specifically need to enter the number
and the text in the same cell - "4 steps". Thanks. Excel 2003

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 55
Default Filling down text in increments of three

Indeed, Sam, I did want the full text. Your formula works wonders. Thanks

"Sam Wilson" wrote:

Do you want the text "2 Steps" to appear in A1 etc?

If so, put the formula =(INT((ROW(B1)-1)/3)+2)&" Steps"
in cell A1 and copy it down.

Sam

"Josh W" wrote:

How can I fill a worksheet all the way down with the following:
A1=2 steps
A2=2 steps
A3=2 steps
A4=3 steps
A5=3 steps
A6=3 steps
A7=4 steps
A8=4 steps
A9=4 steps
And so on, each in increments of three, all the way down the sheet. I asked
the same question yesterday for numbers only without text and got some
excellent formulas for that. Today I specifically need to enter the number
and the text in the same cell - "4 steps". Thanks. Excel 2003

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 55
Default Filling down text in increments of three

Dave, that was an excellent tip. Thanks a mill.

"Dave Curtis" wrote:

Hi,

Or just use whatever formula you were already using, and apply a custom
nuber format of

general" steps"

which will automatically add a space followed by the word steps to any
number in those cells.

Dave

"Josh W" wrote:

How can I fill a worksheet all the way down with the following:
A1=2 steps
A2=2 steps
A3=2 steps
A4=3 steps
A5=3 steps
A6=3 steps
A7=4 steps
A8=4 steps
A9=4 steps
And so on, each in increments of three, all the way down the sheet. I asked
the same question yesterday for numbers only without text and got some
excellent formulas for that. Today I specifically need to enter the number
and the text in the same cell - "4 steps". Thanks. Excel 2003



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 99
Default Filling down text in increments of three

Hi,

Glad to help.
As a matter of interest, I use similar formulas to generate many different
series, and I have the following listed to generate the series you mentioned.

=ROUNDUP(ROW()/3,0)+1
=INT((ROW()-1)/3)+2
=CEILING(ROW()/3,1)+1
=ROUNDDOWN((ROW()-1)/3,0)+2
=FLOOR((ROW()+5)/3,1)
=MROUND(ROW()+1,3)/3+1
=CEILING(ROW(),3)/3+1

Dave

"Josh W" wrote:

Dave, that was an excellent tip. Thanks a mill.

"Dave Curtis" wrote:

Hi,

Or just use whatever formula you were already using, and apply a custom
nuber format of

general" steps"

which will automatically add a space followed by the word steps to any
number in those cells.

Dave

"Josh W" wrote:

How can I fill a worksheet all the way down with the following:
A1=2 steps
A2=2 steps
A3=2 steps
A4=3 steps
A5=3 steps
A6=3 steps
A7=4 steps
A8=4 steps
A9=4 steps
And so on, each in increments of three, all the way down the sheet. I asked
the same question yesterday for numbers only without text and got some
excellent formulas for that. Today I specifically need to enter the number
and the text in the same cell - "4 steps". Thanks. Excel 2003

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 55
Default Filling down text in increments of three

Thanks Dave. It is very interesting. Do you have some good links where I can
learn more about creating my own formulas instead of having to ask each time?
Josh.

"Dave Curtis" wrote:

Hi,

Glad to help.
As a matter of interest, I use similar formulas to generate many different
series, and I have the following listed to generate the series you mentioned.

=ROUNDUP(ROW()/3,0)+1
=INT((ROW()-1)/3)+2
=CEILING(ROW()/3,1)+1
=ROUNDDOWN((ROW()-1)/3,0)+2
=FLOOR((ROW()+5)/3,1)
=MROUND(ROW()+1,3)/3+1
=CEILING(ROW(),3)/3+1

Dave

"Josh W" wrote:

Dave, that was an excellent tip. Thanks a mill.

"Dave Curtis" wrote:

Hi,

Or just use whatever formula you were already using, and apply a custom
nuber format of

general" steps"

which will automatically add a space followed by the word steps to any
number in those cells.

Dave

"Josh W" wrote:

How can I fill a worksheet all the way down with the following:
A1=2 steps
A2=2 steps
A3=2 steps
A4=3 steps
A5=3 steps
A6=3 steps
A7=4 steps
A8=4 steps
A9=4 steps
And so on, each in increments of three, all the way down the sheet. I asked
the same question yesterday for numbers only without text and got some
excellent formulas for that. Today I specifically need to enter the number
and the text in the same cell - "4 steps". Thanks. Excel 2003

  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 99
Default Filling down text in increments of three

Hi Josh,

What sort of formulas are you looking for? For generating series, or other
things too?
I used to ask all the time on various forums, but eventually got better at
doing them myself. I also got together with some guys from here and
eventually built up a library of potentially useful formulas.

Dave

"Josh W" wrote:

Thanks Dave. It is very interesting. Do you have some good links where I can
learn more about creating my own formulas instead of having to ask each time?
Josh.

"Dave Curtis" wrote:

Hi,

Glad to help.
As a matter of interest, I use similar formulas to generate many different
series, and I have the following listed to generate the series you mentioned.

=ROUNDUP(ROW()/3,0)+1
=INT((ROW()-1)/3)+2
=CEILING(ROW()/3,1)+1
=ROUNDDOWN((ROW()-1)/3,0)+2
=FLOOR((ROW()+5)/3,1)
=MROUND(ROW()+1,3)/3+1
=CEILING(ROW(),3)/3+1

Dave

"Josh W" wrote:

Dave, that was an excellent tip. Thanks a mill.

"Dave Curtis" wrote:

Hi,

Or just use whatever formula you were already using, and apply a custom
nuber format of

general" steps"

which will automatically add a space followed by the word steps to any
number in those cells.

Dave

"Josh W" wrote:

How can I fill a worksheet all the way down with the following:
A1=2 steps
A2=2 steps
A3=2 steps
A4=3 steps
A5=3 steps
A6=3 steps
A7=4 steps
A8=4 steps
A9=4 steps
And so on, each in increments of three, all the way down the sheet. I asked
the same question yesterday for numbers only without text and got some
excellent formulas for that. Today I specifically need to enter the number
and the text in the same cell - "4 steps". Thanks. Excel 2003

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
filling down a formula using =TEXT() dxdallyn Excel Discussion (Misc queries) 4 May 7th 07 10:52 PM
Filling cells with Word text characters GlennB Excel Discussion (Misc queries) 0 November 27th 06 07:19 PM
Filling Text from Another File lost in charts Excel Worksheet Functions 6 December 2nd 05 07:46 PM
increments pytelium Excel Discussion (Misc queries) 5 October 9th 05 09:45 PM
filling information from one cell and filling another. Dianne Excel Worksheet Functions 1 August 15th 05 08:14 PM


All times are GMT +1. The time now is 03:53 PM.

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"