#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 79
Default Formula Help

I am trying to do the following:

lets's say in cell C1 I input 2 and in cell D1 I have input 7
Then starting in cell C2, I would like it to list me all number including in
between so that C2=2, C3=3,C4=4,C5=5, C6=6, C7=7.

Let's say I have in C1=26 and D2=32
then C2=26, C3=27, C4=28, C5=29, C6=30, C7=31, C8=32.

Any ideas. Thanks.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22
Default Formula Help

Try "Control C and move your mouse to the number at the begining "2" at the
RIGHT corner down "cell" and right click down, you will see one big cross and
small one. I hope that was your question. :|
--
D Workalcholic


"A.S." wrote:

I am trying to do the following:

lets's say in cell C1 I input 2 and in cell D1 I have input 7
Then starting in cell C2, I would like it to list me all number including in
between so that C2=2, C3=3,C4=4,C5=5, C6=6, C7=7.

Let's say I have in C1=26 and D2=32
then C2=26, C3=27, C4=28, C5=29, C6=30, C7=31, C8=32.

Any ideas. Thanks.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 740
Default Formula Help

c1=2
d1=7

c2=c1
c3
=IF(AND(C17++SIGN($D$1-$C$1)*1<=MAX(C$1,D$1),C17++SIGN($D$1-$C$1)*1=MIN(C$1,D$1)),C17+SIGN($D$1-$C$1)*1,"END HERE")

data sequence based on entry at C1 and D1, where C2 = C1 and always the
start of the sequence..

--
*****
birds of the same feather flock together..



"A.S." wrote:

I am trying to do the following:

lets's say in cell C1 I input 2 and in cell D1 I have input 7
Then starting in cell C2, I would like it to list me all number including in
between so that C2=2, C3=3,C4=4,C5=5, C6=6, C7=7.

Let's say I have in C1=26 and D2=32
then C2=26, C3=27, C4=28, C5=29, C6=30, C7=31, C8=32.

Any ideas. Thanks.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 79
Default Formula Help

Not quite sure this does what I need it to. Let me start over with this data:

Q1=1 & R1=3
Q2=4 & R2=7
Q3=25 & R3=27

Now, let's say Q28=Q1=1. Then R28=2, S28=3.
Q29=4, R29=5, S29=6, T29=7
Q30=25, R30=26, S30=27.

Is this possible?


"driller" wrote:

c1=2
d1=7

c2=c1
c3
=IF(AND(C17++SIGN($D$1-$C$1)*1<=MAX(C$1,D$1),C17++SIGN($D$1-$C$1)*1=MIN(C$1,D$1)),C17+SIGN($D$1-$C$1)*1,"END HERE")

data sequence based on entry at C1 and D1, where C2 = C1 and always the
start of the sequence..

--
*****
birds of the same feather flock together..



"A.S." wrote:

I am trying to do the following:

lets's say in cell C1 I input 2 and in cell D1 I have input 7
Then starting in cell C2, I would like it to list me all number including in
between so that C2=2, C3=3,C4=4,C5=5, C6=6, C7=7.

Let's say I have in C1=26 and D2=32
then C2=26, C3=27, C4=28, C5=29, C6=30, C7=31, C8=32.

Any ideas. Thanks.

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22
Default Formula Help

Okay, try this ...down on Q29 enter the "=" and with your mouse click cell Q1
and enter, then on Q29 just copy across from Q to S29. I hope it works. :)
--
D Workalcholic


"A.S." wrote:

Not quite sure this does what I need it to. Let me start over with this data:

Q1=1 & R1=3
Q2=4 & R2=7
Q3=25 & R3=27

Now, let's say Q28=Q1=1. Then R28=2, S28=3.
Q29=4, R29=5, S29=6, T29=7
Q30=25, R30=26, S30=27.

Is this possible?


"driller" wrote:

c1=2
d1=7

c2=c1
c3
=IF(AND(C17++SIGN($D$1-$C$1)*1<=MAX(C$1,D$1),C17++SIGN($D$1-$C$1)*1=MIN(C$1,D$1)),C17+SIGN($D$1-$C$1)*1,"END HERE")

data sequence based on entry at C1 and D1, where C2 = C1 and always the
start of the sequence..

--
*****
birds of the same feather flock together..



"A.S." wrote:

I am trying to do the following:

lets's say in cell C1 I input 2 and in cell D1 I have input 7
Then starting in cell C2, I would like it to list me all number including in
between so that C2=2, C3=3,C4=4,C5=5, C6=6, C7=7.

Let's say I have in C1=26 and D2=32
then C2=26, C3=27, C4=28, C5=29, C6=30, C7=31, C8=32.

Any ideas. Thanks.



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 79
Default Formula Help

I don't think you are quite understanding what I am trying to do. I think a
macro may be needed and not a formula. I am not just trying to make those
cells equal the others, where I can just drag it across. I want it to equal
the first cell but then count until it reaches the next cell's number. So on
and so forth for each row. Example:

Q1=4 (first cell) & R1=9 (ending number cell)
So that if I do Q28=Q1, then it will be 4, but then I need the next cells to
continue across until it reaches R1 value So R28=5, S28=6,....V28=9. Hope
this clarifies.

"Enrique" wrote:

Okay, try this ...down on Q29 enter the "=" and with your mouse click cell Q1
and enter, then on Q29 just copy across from Q to S29. I hope it works. :)
--
D Workalcholic


"A.S." wrote:

Not quite sure this does what I need it to. Let me start over with this data:

Q1=1 & R1=3
Q2=4 & R2=7
Q3=25 & R3=27

Now, let's say Q28=Q1=1. Then R28=2, S28=3.
Q29=4, R29=5, S29=6, T29=7
Q30=25, R30=26, S30=27.

Is this possible?


"driller" wrote:

c1=2
d1=7

c2=c1
c3
=IF(AND(C17++SIGN($D$1-$C$1)*1<=MAX(C$1,D$1),C17++SIGN($D$1-$C$1)*1=MIN(C$1,D$1)),C17+SIGN($D$1-$C$1)*1,"END HERE")

data sequence based on entry at C1 and D1, where C2 = C1 and always the
start of the sequence..

--
*****
birds of the same feather flock together..



"A.S." wrote:

I am trying to do the following:

lets's say in cell C1 I input 2 and in cell D1 I have input 7
Then starting in cell C2, I would like it to list me all number including in
between so that C2=2, C3=3,C4=4,C5=5, C6=6, C7=7.

Let's say I have in C1=26 and D2=32
then C2=26, C3=27, C4=28, C5=29, C6=30, C7=31, C8=32.

Any ideas. Thanks.

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
Reusing formula Tony29 Excel Discussion (Misc queries) 7 September 7th 06 04:34 AM
Dynamic Range with unused formula messing up x axis on dynamic graph [email protected] Charts and Charting in Excel 2 February 2nd 06 09:02 PM
Match then lookup Tenacity Excel Worksheet Functions 9 December 3rd 05 06:30 AM
Formula Problem - interrupted by #VALUE! in other cells!? Ted Excel Worksheet Functions 17 November 25th 05 06:18 PM
Formula checking multiple worksheets sonic-the-mouse Excel Worksheet Functions 2 June 5th 05 04:28 AM


All times are GMT +1. The time now is 08:19 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"