Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default How to copy a cell and horizontally expand the paste along header

Hi all,
I know how to do this action on a vertical way:
- Prerequisite: the first column is filled in on 10 rows high;
- Select the top cell of the second column;
- Double-click on the black bold cross in the lower-right of this cell.
As a result, the content (for instance, a function) of the selected cell is
pasted downward alongside the first column, until the end of it (and no
more).
Now the question: how can we perform this action on an horizontal way (first row filled in on 10 columns long and select/double-click the leftmost cell of a second row alongside the first row)?

A helpful answer would be really appreciated!! ;-)
By the way, in case you know how to perform these 2 actions without using
the mouse, I take it as well :-)
Thx in advance for any kind of help,
Bye
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 211
Default How to copy a cell and horizontally expand the paste along header

Which Ver. of Excel are you talking about. In Xl2003 we don't have such a
property.
--
R. Khoshravan
Please click "Yes" if it is helpful.


"al7riv" wrote:

Hi all,
I know how to do this action on a vertical way:
- Prerequisite: the first column is filled in on 10 rows high;
- Select the top cell of the second column;
- Double-click on the black bold cross in the lower-right of this cell.
As a result, the content (for instance, a function) of the selected cell is
pasted downward alongside the first column, until the end of it (and no
more).
Now the question: how can we perform this action on an horizontal way (first row filled in on 10 columns long and select/double-click the leftmost cell of a second row alongside the first row)?

A helpful answer would be really appreciated!! ;-)
By the way, in case you know how to perform these 2 actions without using
the mouse, I take it as well :-)
Thx in advance for any kind of help,
Bye

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default How to copy a cell and horizontally expand the paste along header

Double-click to fill only works filling down, not across.

You have to use some other method of copying across.

I know of no way to simulate the d-click filldown using the keyboard.


Gord Dibben MS Excel MVP

On Fri, 6 Feb 2009 12:46:01 -0800, al7riv
wrote:

Hi all,
I know how to do this action on a vertical way:
- Prerequisite: the first column is filled in on 10 rows high;
- Select the top cell of the second column;
- Double-click on the black bold cross in the lower-right of this cell.
As a result, the content (for instance, a function) of the selected cell is
pasted downward alongside the first column, until the end of it (and no
more).
Now the question: how can we perform this action on an horizontal way (first row filled in on 10 columns long and select/double-click the leftmost cell of a second row alongside the first row)?

A helpful answer would be really appreciated!! ;-)
By the way, in case you know how to perform these 2 actions without using
the mouse, I take it as well :-)
Thx in advance for any kind of help,
Bye


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default How to copy a cell and horizontally expand the paste along header

Double-click on the fill handle to fill down has been a feature for many
versions of Excel, including 2003

Are you set to allow cell drag and drop?


Gord Dibben MS Excel MVP

On Fri, 6 Feb 2009 13:55:01 -0800, Khoshravan
wrote:

Which Ver. of Excel are you talking about. In Xl2003 we don't have such a
property.


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 211
Default How to copy a cell and horizontally expand the paste along hea

I am using Xl2003 but d-clicking the fill handle does not work in my XL. Does
it need to be activated some where in the XL?
--
R. Khoshravan
Please click "Yes" if it is helpful.


"Gord Dibben" wrote:

Double-click on the fill handle to fill down has been a feature for many
versions of Excel, including 2003

Are you set to allow cell drag and drop?


Gord Dibben MS Excel MVP

On Fri, 6 Feb 2009 13:55:01 -0800, Khoshravan
wrote:

Which Ver. of Excel are you talking about. In Xl2003 we don't have such a
property.





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default How to copy a cell and horizontally expand the paste along hea

Does not have to be activated.

As long as a column adjacent(left or right) has values, d-click will copy
down to end of non-blank data in that adjacent column.

i.e. Column C has data to row 40

In B1 enter =C1

D-click on B1 fill handle to fill down to B40.

Note: d-click will default to left adjacent column if both left and right
adjacent columns have data.

You must have "allow cell drag and drop" enabled.


Gord

On Fri, 6 Feb 2009 22:42:01 -0800, Khoshravan
wrote:

I am using Xl2003 but d-clicking the fill handle does not work in my XL. Does
it need to be activated some where in the XL?


  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default How to copy a cell and horizontally expand the paste along hea

Ok, Gord. Thx for the reply.

Too bad there isn't any solution, it could have been very helpful.

Cheers,

al7riv



"Gord Dibben" wrote:

Double-click to fill only works filling down, not across.

You have to use some other method of copying across.

I know of no way to simulate the d-click filldown using the keyboard.


Gord Dibben MS Excel MVP

On Fri, 6 Feb 2009 12:46:01 -0800, al7riv
wrote:

Hi all,
I know how to do this action on a vertical way:
- Prerequisite: the first column is filled in on 10 rows high;
- Select the top cell of the second column;
- Double-click on the black bold cross in the lower-right of this cell.
As a result, the content (for instance, a function) of the selected cell is
pasted downward alongside the first column, until the end of it (and no
more).
Now the question: how can we perform this action on an horizontal way (first row filled in on 10 columns long and select/double-click the leftmost cell of a second row alongside the first row)?

A helpful answer would be really appreciated!! ;-)
By the way, in case you know how to perform these 2 actions without using
the mouse, I take it as well :-)
Thx in advance for any kind of help,
Bye



  #8   Report Post  
Junior Member
 
Location: ISRAEL
Posts: 2
Default

Hi,

Although it is a very old thread - here is a Macro which will emulate a Horizontal double-click Fill-in:

Code:
Sub Fill_HorizontalRight()
    Set Rng = Range(Selection, Selection.Offset(-1).End(xlToRight).Offset(1))
    Rng.FillRight
End Sub
Michael (Micky) Avidan
“Microsoft®” MVP – Excel
ISRAEL
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
Copy column in Excel and paste horizontally in Word. Confused Excel Discussion (Misc queries) 6 March 7th 08 07:22 PM
want to cut data from vertical cells and paste them horizontally. charter_SKR Excel Discussion (Misc queries) 2 March 29th 06 04:42 PM
Macro to find copy "header" and paste RunsWithKnives Excel Discussion (Misc queries) 3 March 27th 06 05:55 AM
Excel: custom header - is it possible to paste into header? Maureen D. Excel Worksheet Functions 0 November 4th 05 03:07 PM
expanding the side margins in excel does not expand header John Staerck Excel Discussion (Misc queries) 1 October 6th 05 05:37 PM


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