Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,814
Default Simple - F9, then K9, then, P9, then U9, etc...

....results in consecutive cells.

in row 9 I have values in specific cells ( every 5th cell).
I need those values in consecutive cells in row 25.
If
F9=230, K9 = 783, P9= 165, U9=875
I want the above as follows below:
D25 =230, E25=783, F25=165,G25=875, etc.

thanks,

Steve


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Simple - F9, then K9, then, P9, then U9, etc...

In D25 try the below formula and copy across...
=INDEX(9:9,COLUMN(A1)*5+1)

If this post helps click Yes
---------------
Jacob Skaria


"Steve" wrote:

...results in consecutive cells.

in row 9 I have values in specific cells ( every 5th cell).
I need those values in consecutive cells in row 25.
If
F9=230, K9 = 783, P9= 165, U9=875
I want the above as follows below:
D25 =230, E25=783, F25=165,G25=875, etc.

thanks,

Steve


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,814
Default Simple - F9, then K9, then, P9, then U9, etc...

Perfect,
Thanks,

So many ways to achieve the same results, because with Lars' & Shane's
solutions also worked great.

Thanks again,

Steve

"Jacob Skaria" wrote:

In D25 try the below formula and copy across...
=INDEX(9:9,COLUMN(A1)*5+1)

If this post helps click Yes
---------------
Jacob Skaria


"Steve" wrote:

...results in consecutive cells.

in row 9 I have values in specific cells ( every 5th cell).
I need those values in consecutive cells in row 25.
If
F9=230, K9 = 783, P9= 165, U9=875
I want the above as follows below:
D25 =230, E25=783, F25=165,G25=875, etc.

thanks,

Steve


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,071
Default Simple - F9, then K9, then, P9, then U9, etc...

Steve
Select all the cells in row 9 that you want to copy. Do this by first
clicking on F9. Then hold your Ctrl key down and select each of the rest of
the cells, K9, P9, U9. Now do Edit - Copy. Click on D25. Now do Edit -
Paste. Done. HTH Otto
"Steve" wrote in message
...
...results in consecutive cells.

in row 9 I have values in specific cells ( every 5th cell).
I need those values in consecutive cells in row 25.
If
F9=230, K9 = 783, P9= 165, U9=875
I want the above as follows below:
D25 =230, E25=783, F25=165,G25=875, etc.

thanks,

Steve




  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,814
Default Simple - F9, then K9, then, P9, then U9, etc...

I have to update this weekly, so I wanted to automate it more, rtaher that
re-selecting the #'s aver week, and also may eventually end up with too many.

Thanks,

Steve

"Otto Moehrbach" wrote:

Steve
Select all the cells in row 9 that you want to copy. Do this by first
clicking on F9. Then hold your Ctrl key down and select each of the rest of
the cells, K9, P9, U9. Now do Edit - Copy. Click on D25. Now do Edit -
Paste. Done. HTH Otto
"Steve" wrote in message
...
...results in consecutive cells.

in row 9 I have values in specific cells ( every 5th cell).
I need those values in consecutive cells in row 25.
If
F9=230, K9 = 783, P9= 165, U9=875
I want the above as follows below:
D25 =230, E25=783, F25=165,G25=875, etc.

thanks,

Steve







  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,276
Default Simple - F9, then K9, then, P9, then U9, etc...

Hi,
highlight everything in row 9, hit CTRL G, special, constants, leave only
numbers checked, OK, CTRL C, go to row 25 and press CTRL V

if this helps please click yes thanks

"Steve" wrote:

...results in consecutive cells.

in row 9 I have values in specific cells ( every 5th cell).
I need those values in consecutive cells in row 25.
If
F9=230, K9 = 783, P9= 165, U9=875
I want the above as follows below:
D25 =230, E25=783, F25=165,G25=875, etc.

thanks,

Steve


  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,814
Default Simple - F9, then K9, then, P9, then U9, etc...

This worked however I have other #'s in that row that I don't need, so I used
the other solutions.

Thanks,
Steve

"Eduardo" wrote:

Hi,
highlight everything in row 9, hit CTRL G, special, constants, leave only
numbers checked, OK, CTRL C, go to row 25 and press CTRL V

if this helps please click yes thanks

"Steve" wrote:

...results in consecutive cells.

in row 9 I have values in specific cells ( every 5th cell).
I need those values in consecutive cells in row 25.
If
F9=230, K9 = 783, P9= 165, U9=875
I want the above as follows below:
D25 =230, E25=783, F25=165,G25=875, etc.

thanks,

Steve


  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Simple - F9, then K9, then, P9, then U9, etc...

Try this entered in D25.

=INDEX($F9:$AZ9,COLUMNS($D25:D25)*5-4)

Adjust for the correct end of range: $F9:$AZ9

--
Biff
Microsoft Excel MVP


"Steve" wrote in message
...
...results in consecutive cells.

in row 9 I have values in specific cells ( every 5th cell).
I need those values in consecutive cells in row 25.
If
F9=230, K9 = 783, P9= 165, U9=875
I want the above as follows below:
D25 =230, E25=783, F25=165,G25=875, etc.

thanks,

Steve




  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,814
Default Simple - F9, then K9, then, P9, then U9, etc...

This produced the same # when dragging across, but the other solutions worked
great.

Thanks
Steve

"T. Valko" wrote:

Try this entered in D25.

=INDEX($F9:$AZ9,COLUMNS($D25:D25)*5-4)

Adjust for the correct end of range: $F9:$AZ9

--
Biff
Microsoft Excel MVP


"Steve" wrote in message
...
...results in consecutive cells.

in row 9 I have values in specific cells ( every 5th cell).
I need those values in consecutive cells in row 25.
If
F9=230, K9 = 783, P9= 165, U9=875
I want the above as follows below:
D25 =230, E25=783, F25=165,G25=875, etc.

thanks,

Steve





  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Simple - F9, then K9, then, P9, then U9, etc...

This produced the same # when dragging across

Hmmm...

Well, I can assure you that formula does exactly what you asked for and is
both robust and efficient.

--
Biff
Microsoft Excel MVP


"Steve" wrote in message
...
This produced the same # when dragging across, but the other solutions
worked
great.

Thanks
Steve

"T. Valko" wrote:

Try this entered in D25.

=INDEX($F9:$AZ9,COLUMNS($D25:D25)*5-4)

Adjust for the correct end of range: $F9:$AZ9

--
Biff
Microsoft Excel MVP


"Steve" wrote in message
...
...results in consecutive cells.

in row 9 I have values in specific cells ( every 5th cell).
I need those values in consecutive cells in row 25.
If
F9=230, K9 = 783, P9= 165, U9=875
I want the above as follows below:
D25 =230, E25=783, F25=165,G25=875, etc.

thanks,

Steve









  #11   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,814
Default Simple - F9, then K9, then, P9, then U9, etc...

You're right. Sorry, I must have did something wrong earlier, because it
works great now.

Thanks again

"T. Valko" wrote:

This produced the same # when dragging across


Hmmm...

Well, I can assure you that formula does exactly what you asked for and is
both robust and efficient.

--
Biff
Microsoft Excel MVP


"Steve" wrote in message
...
This produced the same # when dragging across, but the other solutions
worked
great.

Thanks
Steve

"T. Valko" wrote:

Try this entered in D25.

=INDEX($F9:$AZ9,COLUMNS($D25:D25)*5-4)

Adjust for the correct end of range: $F9:$AZ9

--
Biff
Microsoft Excel MVP


"Steve" wrote in message
...
...results in consecutive cells.

in row 9 I have values in specific cells ( every 5th cell).
I need those values in consecutive cells in row 25.
If
F9=230, K9 = 783, P9= 165, U9=875
I want the above as follows below:
D25 =230, E25=783, F25=165,G25=875, etc.

thanks,

Steve








  #12   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Simple - F9, then K9, then, P9, then U9, etc...

Good deal! Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"Steve" wrote in message
...
You're right. Sorry, I must have did something wrong earlier, because it
works great now.

Thanks again

"T. Valko" wrote:

This produced the same # when dragging across


Hmmm...

Well, I can assure you that formula does exactly what you asked for and
is
both robust and efficient.

--
Biff
Microsoft Excel MVP


"Steve" wrote in message
...
This produced the same # when dragging across, but the other solutions
worked
great.

Thanks
Steve

"T. Valko" wrote:

Try this entered in D25.

=INDEX($F9:$AZ9,COLUMNS($D25:D25)*5-4)

Adjust for the correct end of range: $F9:$AZ9

--
Biff
Microsoft Excel MVP


"Steve" wrote in message
...
...results in consecutive cells.

in row 9 I have values in specific cells ( every 5th cell).
I need those values in consecutive cells in row 25.
If
F9=230, K9 = 783, P9= 165, U9=875
I want the above as follows below:
D25 =230, E25=783, F25=165,G25=875, etc.

thanks,

Steve










  #13   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 913
Default Simple - F9, then K9, then, P9, then U9, etc...

You must have mistyped the formula.
Check that you have written COLUMNS (not COLUMN)
Check that you have written $D25:D25 (not D25:D25 or $D25:$D25)

Hope this helps / Lars-Åke

On Mon, 14 Sep 2009 12:56:02 -0700, Steve
wrote:

This produced the same # when dragging across, but the other solutions worked
great.

Thanks
Steve

"T. Valko" wrote:

Try this entered in D25.

=INDEX($F9:$AZ9,COLUMNS($D25:D25)*5-4)

Adjust for the correct end of range: $F9:$AZ9

--
Biff
Microsoft Excel MVP


"Steve" wrote in message
...
...results in consecutive cells.

in row 9 I have values in specific cells ( every 5th cell).
I need those values in consecutive cells in row 25.
If
F9=230, K9 = 783, P9= 165, U9=875
I want the above as follows below:
D25 =230, E25=783, F25=165,G25=875, etc.

thanks,

Steve






  #14   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,814
Default Simple - F9, then K9, then, P9, then U9, etc...

Yes, I did have columns, but I must have had something else wrong, because it
works great now.

Thanks for your patiencew.

Steve

"Lars-Ã…ke Aspelin" wrote:

You must have mistyped the formula.
Check that you have written COLUMNS (not COLUMN)
Check that you have written $D25:D25 (not D25:D25 or $D25:$D25)

Hope this helps / Lars-Ã…ke

On Mon, 14 Sep 2009 12:56:02 -0700, Steve
wrote:

This produced the same # when dragging across, but the other solutions worked
great.

Thanks
Steve

"T. Valko" wrote:

Try this entered in D25.

=INDEX($F9:$AZ9,COLUMNS($D25:D25)*5-4)

Adjust for the correct end of range: $F9:$AZ9

--
Biff
Microsoft Excel MVP


"Steve" wrote in message
...
...results in consecutive cells.

in row 9 I have values in specific cells ( every 5th cell).
I need those values in consecutive cells in row 25.
If
F9=230, K9 = 783, P9= 165, U9=875
I want the above as follows below:
D25 =230, E25=783, F25=165,G25=875, etc.

thanks,

Steve







  #15   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 913
Default Simple - F9, then K9, then, P9, then U9, etc...

On Mon, 14 Sep 2009 10:50:01 -0700, Steve
wrote:

...results in consecutive cells.

in row 9 I have values in specific cells ( every 5th cell).
I need those values in consecutive cells in row 25.
If
F9=230, K9 = 783, P9= 165, U9=875
I want the above as follows below:
D25 =230, E25=783, F25=165,G25=875, etc.

thanks,

Steve


If you want a formula solution, try this in cell D25:

=OFFSET($F9,,5*(COLUMN()-COLUMN($D1)))

copy this across to the right as far as needed

Hope this helps / Lars-Åke




  #16   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,814
Default Simple - F9, then K9, then, P9, then U9, etc...

Perfect,
Thanks,

So many ways to achieve the same results, because Jacob's & Shane's
solutions also worked great.

Thanks again,

Steve


"Lars-Ã…ke Aspelin" wrote:

On Mon, 14 Sep 2009 10:50:01 -0700, Steve
wrote:

...results in consecutive cells.

in row 9 I have values in specific cells ( every 5th cell).
I need those values in consecutive cells in row 25.
If
F9=230, K9 = 783, P9= 165, U9=875
I want the above as follows below:
D25 =230, E25=783, F25=165,G25=875, etc.

thanks,

Steve


If you want a formula solution, try this in cell D25:

=OFFSET($F9,,5*(COLUMN()-COLUMN($D1)))

copy this across to the right as far as needed

Hope this helps / Lars-Ã…ke



  #17   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,346
Default Simple - F9, then K9, then, P9, then U9, etc...

Hi,

And yet another solution

=OFFSET($F8,,COLUMN(A1)*5-5)

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"Steve" wrote:

...results in consecutive cells.

in row 9 I have values in specific cells ( every 5th cell).
I need those values in consecutive cells in row 25.
If
F9=230, K9 = 783, P9= 165, U9=875
I want the above as follows below:
D25 =230, E25=783, F25=165,G25=875, etc.

thanks,

Steve


  #18   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 913
Default Simple - F9, then K9, then, P9, then U9, etc...

On Mon, 14 Sep 2009 12:26:01 -0700, Shane Devenshire
wrote:

Hi,

And yet another solution

=OFFSET($F8,,COLUMN(A1)*5-5)


Shouldn't than be

=OFFSET($F9,,COLUMN(A1)*5-5)

which could be further reduced to

=OFFSET($A9,,COLUMN(A1)*5)

/ Lars-Åke
  #19   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,814
Default Simple - F9, then K9, then, P9, then U9, etc...

Perfect,
Thanks,

So many ways to achieve the same results, because Jacob's' & Lars'
solutions also worked great.

Thanks again,

Steve


"Shane Devenshire" wrote:

Hi,

And yet another solution

=OFFSET($F8,,COLUMN(A1)*5-5)

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"Steve" wrote:

...results in consecutive cells.

in row 9 I have values in specific cells ( every 5th cell).
I need those values in consecutive cells in row 25.
If
F9=230, K9 = 783, P9= 165, U9=875
I want the above as follows below:
D25 =230, E25=783, F25=165,G25=875, etc.

thanks,

Steve


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
IF formula-simple question; simple operator Rich D Excel Discussion (Misc queries) 4 December 6th 07 03:36 PM
Simple problem, simple formula, no FUNCTION ! Ron@Buy Excel Worksheet Functions 6 September 28th 07 04:51 PM
Simple lookup - or maybe not so simple - help! ChrisHodds Excel Worksheet Functions 1 September 27th 06 03:09 PM
Simple Simple Excel usage question BookerW Excel Discussion (Misc queries) 1 June 23rd 05 10:06 PM
Make it more simple or intuitive to do simple things Vernie Charts and Charting in Excel 1 March 16th 05 04:01 AM


All times are GMT +1. The time now is 05:36 PM.

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"