PC Review


Reply
Thread Tools Rate Thread

Copy formula with row automatically modified not column

 
 
Paul
Guest
Posts: n/a
 
      3rd Mar 2009
Hi,

I am trying to figure out a means to copy a formula across multiple columns
so that the row value increments automatically but not the column value. For
example:

The first cell, A1, has a formula of: =Sheet1!K110
After copy/paste, Cell B1 should have: =Sheet1!K114
After copy/paste, Cell C1 should have: =Sheet1!K118
After copy/paste, Cell B1 should have: =Sheet1!K122

The sheet I am working on has probably 200 such cells so being able to do
this via copy/paste would be ideal compared to editing each cell one-by-one.

Thank you for your help.

PS

 
Reply With Quote
 
 
 
 
T. Valko
Guest
Posts: n/a
 
      3rd Mar 2009
Try this:

=INDEX(Sheet1!$K110:$K300,COLUMNS($A1:A1)*4-3)

Copy across as needed. Adjust the end of range: $K300 as needed.

--
Biff
Microsoft Excel MVP


"Paul" <(E-Mail Removed)> wrote in message
news:7C70050F-4EA5-40DD-B026-(E-Mail Removed)...
> Hi,
>
> I am trying to figure out a means to copy a formula across multiple
> columns
> so that the row value increments automatically but not the column value.
> For
> example:
>
> The first cell, A1, has a formula of: =Sheet1!K110
> After copy/paste, Cell B1 should have: =Sheet1!K114
> After copy/paste, Cell C1 should have: =Sheet1!K118
> After copy/paste, Cell B1 should have: =Sheet1!K122
>
> The sheet I am working on has probably 200 such cells so being able to do
> this via copy/paste would be ideal compared to editing each cell
> one-by-one.
>
> Thank you for your help.
>
> PS
>



 
Reply With Quote
 
Paul
Guest
Posts: n/a
 
      3rd Mar 2009
Hi Biff,

Thanks alot, this worked great!

PS


"T. Valko" wrote:

> Try this:
>
> =INDEX(Sheet1!$K110:$K300,COLUMNS($A1:A1)*4-3)
>
> Copy across as needed. Adjust the end of range: $K300 as needed.
>
> --
> Biff
> Microsoft Excel MVP
>
>
> "Paul" <(E-Mail Removed)> wrote in message
> news:7C70050F-4EA5-40DD-B026-(E-Mail Removed)...
> > Hi,
> >
> > I am trying to figure out a means to copy a formula across multiple
> > columns
> > so that the row value increments automatically but not the column value.
> > For
> > example:
> >
> > The first cell, A1, has a formula of: =Sheet1!K110
> > After copy/paste, Cell B1 should have: =Sheet1!K114
> > After copy/paste, Cell C1 should have: =Sheet1!K118
> > After copy/paste, Cell B1 should have: =Sheet1!K122
> >
> > The sheet I am working on has probably 200 such cells so being able to do
> > this via copy/paste would be ideal compared to editing each cell
> > one-by-one.
> >
> > Thank you for your help.
> >
> > PS
> >

>
>
>

 
Reply With Quote
 
Shane Devenshire
Guest
Posts: n/a
 
      3rd Mar 2009
Hi,

Here is another option:

=INDIRECT("Sheet1!K"&106+COLUMN()*4)

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

Cheers,
Shane Devenshire


"Paul" wrote:

> Hi,
>
> I am trying to figure out a means to copy a formula across multiple columns
> so that the row value increments automatically but not the column value. For
> example:
>
> The first cell, A1, has a formula of: =Sheet1!K110
> After copy/paste, Cell B1 should have: =Sheet1!K114
> After copy/paste, Cell C1 should have: =Sheet1!K118
> After copy/paste, Cell B1 should have: =Sheet1!K122
>
> The sheet I am working on has probably 200 such cells so being able to do
> this via copy/paste would be ideal compared to editing each cell one-by-one.
>
> Thank you for your help.
>
> PS
>

 
Reply With Quote
 
T. Valko
Guest
Posts: n/a
 
      4th Mar 2009
You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"Paul" <(E-Mail Removed)> wrote in message
news2701E5F-06FF-402A-B698-(E-Mail Removed)...
> Hi Biff,
>
> Thanks alot, this worked great!
>
> PS
>
>
> "T. Valko" wrote:
>
>> Try this:
>>
>> =INDEX(Sheet1!$K110:$K300,COLUMNS($A1:A1)*4-3)
>>
>> Copy across as needed. Adjust the end of range: $K300 as needed.
>>
>> --
>> Biff
>> Microsoft Excel MVP
>>
>>
>> "Paul" <(E-Mail Removed)> wrote in message
>> news:7C70050F-4EA5-40DD-B026-(E-Mail Removed)...
>> > Hi,
>> >
>> > I am trying to figure out a means to copy a formula across multiple
>> > columns
>> > so that the row value increments automatically but not the column
>> > value.
>> > For
>> > example:
>> >
>> > The first cell, A1, has a formula of: =Sheet1!K110
>> > After copy/paste, Cell B1 should have: =Sheet1!K114
>> > After copy/paste, Cell C1 should have: =Sheet1!K118
>> > After copy/paste, Cell B1 should have: =Sheet1!K122
>> >
>> > The sheet I am working on has probably 200 such cells so being able to
>> > do
>> > this via copy/paste would be ideal compared to editing each cell
>> > one-by-one.
>> >
>> > Thank you for your help.
>> >
>> > PS
>> >

>>
>>
>>



 
Reply With Quote
 
New Member
Join Date: May 2009
Posts: 1
 
      26th May 2009
same case but diff row
for example :


The cell Sheet2! B32, has a formula of: =Sheet1!C9
After copy/paste, Cell Sheet2!B33 should have: =Sheet1!C47
After copy/paste, Cell Sheet2!B34 should have: =Sheet1!C85
After copy/paste, Cell Sheet2!B35 should have: =Sheet1!C123

Your help will be much appreciated.
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Automatically copy formula in column when adding new row.... Jasmine R Microsoft Excel Worksheet Functions 2 31st Mar 2010 06:24 PM
copy formula down a column and have cell references change within formula brad Microsoft Excel New Users 5 13th May 2007 04:38 PM
How to automatically copy VLOOKUP FORMULA IN A COLUMN =?Utf-8?B?a2xhZmVydA==?= Microsoft Excel Misc 0 9th May 2007 08:45 AM
Automatically copy down a column Anne Microsoft Excel Programming 2 5th Feb 2005 02:31 AM
Automatically copy formula =?Utf-8?B?YWxzNzc1?= Microsoft Excel Worksheet Functions 2 20th Sep 2004 08:43 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:18 AM.