A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Setting up and Configuration
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Make Columns A&B on Sheet2 always equal Sheet1 table columns A&B



 
 
Thread Tools Display Modes
  #1  
Old August 16th, 2009, 05:23 PM posted to microsoft.public.excel.setup,microsoft.public.excel.worksheet.functions
KnightBall
external usenet poster
 
Posts: 9
Default Make Columns A&B on Sheet2 always equal Sheet1 table columns A&B

On Worksheet 1 named Transfer settings I have a table called
"transfer_settings". Column A is "Transfer Name" and Column B is "Item #"

I would like Worksheet 2 Called "Event Fullfillment" to have Columns A & B
always equal the columns A&B in the table on worksheet 1.

Is there a function for this
--
Thanks
KnightBall
  #2  
Old August 16th, 2009, 05:58 PM posted to microsoft.public.excel.setup,microsoft.public.excel.worksheet.functions
Otto Moehrbach[_2_]
external usenet poster
 
Posts: 716
Default Make Columns A&B on Sheet2 always equal Sheet1 table columns A&B

Say your data in worksheet 1 starts in A2. In worksheet 2, cell A2, enter
an equal sign. Then select worksheet 1 and click on cell A2. Hit Enter.
In worksheet 2, select A2 and drag that formula down with the fill handle as
far as you need to. Repeat all this for column B. There are other ways if,
for some reason, you don't want the above. HTH Otto
"KnightBall" wrote in message
...
On Worksheet 1 named Transfer settings I have a table called
"transfer_settings". Column A is "Transfer Name" and Column B is "Item #"

I would like Worksheet 2 Called "Event Fullfillment" to have Columns A & B
always equal the columns A&B in the table on worksheet 1.

Is there a function for this
--
Thanks
KnightBall



  #3  
Old August 16th, 2009, 06:23 PM posted to microsoft.public.excel.setup,microsoft.public.excel.worksheet.functions
OutsideObserver
external usenet poster
 
Posts: 11
Default Make Columns A&B on Sheet2 always equal Sheet1 table columns A&B

On Sun, 16 Aug 2009 09:23:01 -0700, KnightBall
wrote:

On Worksheet 1 named Transfer settings I have a table called
"transfer_settings". Column A is "Transfer Name" and Column B is "Item #"

I would like Worksheet 2 Called "Event Fullfillment" to have Columns A & B
always equal the columns A&B in the table on worksheet 1.

Is there a function for this


If the A & B columns have a limited number of rows, and particularly a
known number of rows, then you can use VLOOKUP for it. You can also make
direct calls like in

=(sheet1!A1) in the sheet 2 A1 position.

You can also declare a known "table" (cell array) of data and give it a
name, which leaves you with a "named range" in excel, then you can refer
to that range easier than referring to actual cell locations.
  #4  
Old August 16th, 2009, 06:46 PM posted to microsoft.public.excel.setup,microsoft.public.excel.worksheet.functions
Harlan Grove[_2_]
external usenet poster
 
Posts: 1,439
Default Make Columns A&B on Sheet2 always equal Sheet1 table columns A&B

"Otto Moehrbach" wrote...
Say your data in worksheet 1 starts in A2. *In worksheet 2, cell A2, enter
an equal sign. *Then select worksheet 1 and click on cell A2. *Hit Enter.
In worksheet 2, select A2 and drag that formula down with the fill handle as
far as you need to. *Repeat all this for column B. *There are other ways if,
for some reason, you don't want the above.

....

Picky: inserting or deleting rows in either worksheet could alter
this. Row DELETION could be handled by making the Sheet2 formulas

Sheet2!A2: =INDEX(Sheet1!$A:$A,ROW())

Sheet2!B2: =INDEX(Sheet1!$B:$B,ROW())

And if column deletion could also be an issue,

Sheet2!A2: =INDEX(Sheet1!$1:$65536,ROW(),COLUMN())

would always refer to the corresponding cell in Sheet1.

Only event handlers could deal with row/column INSERTION in which case
new formulas for newly blank cells would be needed.
  #5  
Old August 18th, 2009, 12:54 AM posted to microsoft.public.excel.setup,microsoft.public.excel.worksheet.functions
joemomma
external usenet poster
 
Posts: 4
Default Make Columns A&B on Sheet2 always equal Sheet1 table columns A

I have a question about the formula. I just set up sheet 2 to match th
ings entered in sheet 1 but my formula is =Sheet1!A2 not =Sheet2!A2

"Harlan Grove" wrote:

"Otto Moehrbach" wrote...
Say your data in worksheet 1 starts in A2. In worksheet 2, cell A2, enter
an equal sign. Then select worksheet 1 and click on cell A2. Hit Enter.
In worksheet 2, select A2 and drag that formula down with the fill handle as
far as you need to. Repeat all this for column B. There are other ways if,
for some reason, you don't want the above.

....

Picky: inserting or deleting rows in either worksheet could alter
this. Row DELETION could be handled by making the Sheet2 formulas

Sheet2!A2: =INDEX(Sheet1!$A:$A,ROW())

Sheet2!B2: =INDEX(Sheet1!$B:$B,ROW())

And if column deletion could also be an issue,

Sheet2!A2: =INDEX(Sheet1!$1:$65536,ROW(),COLUMN())

would always refer to the corresponding cell in Sheet1.

Only event handlers could deal with row/column INSERTION in which case
new formulas for newly blank cells would be needed.

  #6  
Old August 18th, 2009, 04:48 AM posted to microsoft.public.excel.setup,microsoft.public.excel.worksheet.functions
OutsideObserver
external usenet poster
 
Posts: 11
Default Make Columns A&B on Sheet2 always equal Sheet1 table columns A

On Mon, 17 Aug 2009 16:54:01 -0700, joemomma
wrote:

I have a question about the formula. I just set up sheet 2 to match th
ings entered in sheet 1 but my formula is =Sheet1!A2 not =Sheet2!A2


He was showing you which cell to put the formula in. The formula
itself STARTS at HIS equal sign.

LOOK again.

I'll strip his 'pointers' away.

=INDEX(Sheet1!$A:$A,ROW())

=INDEX(Sheet1!$B:$B,ROW())

And if column deletion could also be an issue,

=INDEX(Sheet1!$1:$65536,ROW(),COLUMN())


Now, the reference you claimed was wrong is merely the location where
he wants you to place the above strings.
  #7  
Old August 18th, 2009, 05:48 PM posted to microsoft.public.excel.setup,microsoft.public.excel.worksheet.functions
joemomma
external usenet poster
 
Posts: 4
Default Make Columns A&B on Sheet2 always equal Sheet1 table columns A

Thank you my bad! been practicing on 2 little sheets sheet 1 (master1),
sheet 2 (fill1). inserting the formula per the instuctions works fine. sheet
1 is the main sheet where data is added or changed. When I insert a row in
sheet 1 the formulas on sheet 2 are intact, but it doesn't insert a row in
sheet 2. Joe

"OutsideObserver" wrote:

On Mon, 17 Aug 2009 16:54:01 -0700, joemomma
wrote:

I have a question about the formula. I just set up sheet 2 to match th
ings entered in sheet 1 but my formula is =Sheet1!A2 not =Sheet2!A2


He was showing you which cell to put the formula in. The formula
itself STARTS at HIS equal sign.

LOOK again.

I'll strip his 'pointers' away.

=INDEX(Sheet1!$A:$A,ROW())

=INDEX(Sheet1!$B:$B,ROW())

And if column deletion could also be an issue,

=INDEX(Sheet1!$1:$65536,ROW(),COLUMN())


Now, the reference you claimed was wrong is merely the location where
he wants you to place the above strings.

 




Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


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


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.