Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22
Default 2007 Formula Needed to Update Table Values

I am using Excel 2007 and need help identifying a formula to complete a table
with data from another range of cells. I can explain best through the
following example:

I want to fill in the missing data in the Table 1 with data from Table 2.
Dog / Red needs to be updated with 111.
Cat / Blue needs to be updated with 555.
Monkey / Yellow needs to be updated with 888.

Table #1
Dog Cat Monkey
Red
Blue
Green
Yellow


Table #2
Dog Red 111
Dog Yellow 333
Cat Red 444
Cat Blue 555
Monkey Yellow 888
Monkey Blue 999

I have tried using Index, but Index uses Rows and Columns and I need a
formula that uses Columns and Columns.

Any help is greatly appreciated.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,389
Default 2007 Formula Needed to Update Table Values

If it was me, I would add a column to Table #2 which concatenates columns 1
and 2 (ie, =a1&a2). Then use a Vlookup in Table #1, as in:
=vlookup(b$1&a$2,table1!$c:$d,2,false)

Regards,
Fred

"Flintstone" wrote in message
...
I am using Excel 2007 and need help identifying a formula to complete a
table
with data from another range of cells. I can explain best through the
following example:

I want to fill in the missing data in the Table 1 with data from Table 2.
Dog / Red needs to be updated with 111.
Cat / Blue needs to be updated with 555.
Monkey / Yellow needs to be updated with 888.

Table #1
Dog Cat Monkey
Red
Blue
Green
Yellow


Table #2
Dog Red 111
Dog Yellow 333
Cat Red 444
Cat Blue 555
Monkey Yellow 888
Monkey Blue 999

I have tried using Index, but Index uses Rows and Columns and I need a
formula that uses Columns and Columns.

Any help is greatly appreciated.


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default 2007 Formula Needed to Update Table Values

I am using Excel 2007

Try this...

Table 1 column headers B1:D1, row headers A2:A5

Table 2 in the range A10:C15

Enter this formula in B2:

=SUMIFS($C$10:$C$15,$A$10:$A$15,B$1,$B$10:$B$15,$A 2)

Copy across to D2 then down to B5:D5

If you don't want to see any 0 results I'd use a custom number format of
General;General;

--
Biff
Microsoft Excel MVP


"Flintstone" wrote in message
...
I am using Excel 2007 and need help identifying a formula to complete a
table
with data from another range of cells. I can explain best through the
following example:

I want to fill in the missing data in the Table 1 with data from Table 2.
Dog / Red needs to be updated with 111.
Cat / Blue needs to be updated with 555.
Monkey / Yellow needs to be updated with 888.

Table #1
Dog Cat Monkey
Red
Blue
Green
Yellow


Table #2
Dog Red 111
Dog Yellow 333
Cat Red 444
Cat Blue 555
Monkey Yellow 888
Monkey Blue 999

I have tried using Index, but Index uses Rows and Columns and I need a
formula that uses Columns and Columns.

Any help is greatly appreciated.



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22
Default 2007 Formula Needed to Update Table Values

Thank you. . . I am not familar with the SUMIFS function, but the results
appears to be headed the right direction. I will test some more and then
post an update.

Thanks again!
Keith


"T. Valko" wrote:

I am using Excel 2007


Try this...

Table 1 column headers B1:D1, row headers A2:A5

Table 2 in the range A10:C15

Enter this formula in B2:

=SUMIFS($C$10:$C$15,$A$10:$A$15,B$1,$B$10:$B$15,$A 2)

Copy across to D2 then down to B5:D5

If you don't want to see any 0 results I'd use a custom number format of
General;General;

--
Biff
Microsoft Excel MVP


"Flintstone" wrote in message
...
I am using Excel 2007 and need help identifying a formula to complete a
table
with data from another range of cells. I can explain best through the
following example:

I want to fill in the missing data in the Table 1 with data from Table 2.
Dog / Red needs to be updated with 111.
Cat / Blue needs to be updated with 555.
Monkey / Yellow needs to be updated with 888.

Table #1
Dog Cat Monkey
Red
Blue
Green
Yellow


Table #2
Dog Red 111
Dog Yellow 333
Cat Red 444
Cat Blue 555
Monkey Yellow 888
Monkey Blue 999

I have tried using Index, but Index uses Rows and Columns and I need a
formula that uses Columns and Columns.

Any help is greatly appreciated.



.

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default 2007 Formula Needed to Update Table Values

As long as the combinations in table 2 are unique that should work just
fine. For example, in table 2 there is only one instance of Dog + Red.

--
Biff
Microsoft Excel MVP


"Flintstone" wrote in message
...
Thank you. . . I am not familar with the SUMIFS function, but the results
appears to be headed the right direction. I will test some more and then
post an update.

Thanks again!
Keith


"T. Valko" wrote:

I am using Excel 2007


Try this...

Table 1 column headers B1:D1, row headers A2:A5

Table 2 in the range A10:C15

Enter this formula in B2:

=SUMIFS($C$10:$C$15,$A$10:$A$15,B$1,$B$10:$B$15,$A 2)

Copy across to D2 then down to B5:D5

If you don't want to see any 0 results I'd use a custom number format of
General;General;

--
Biff
Microsoft Excel MVP


"Flintstone" wrote in message
...
I am using Excel 2007 and need help identifying a formula to complete a
table
with data from another range of cells. I can explain best through the
following example:

I want to fill in the missing data in the Table 1 with data from Table
2.
Dog / Red needs to be updated with 111.
Cat / Blue needs to be updated with 555.
Monkey / Yellow needs to be updated with 888.

Table #1
Dog Cat Monkey
Red
Blue
Green
Yellow


Table #2
Dog Red 111
Dog Yellow 333
Cat Red 444
Cat Blue 555
Monkey Yellow 888
Monkey Blue 999

I have tried using Index, but Index uses Rows and Columns and I need a
formula that uses Columns and Columns.

Any help is greatly appreciated.



.





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,180
Default 2007 Formula Needed to Update Table Values

Excel 2007 PivotTable
No formulas.
http://c0718892.cdn.cloudfiles.racks.../02_23_10.xlsx

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22
Default 2007 Formula Needed to Update Table Values

Thanks Biff!

The SUMIFS function is exactly what I was looking for!

Regards,
Keith



"T. Valko" wrote:

I am using Excel 2007


Try this...

Table 1 column headers B1:D1, row headers A2:A5

Table 2 in the range A10:C15

Enter this formula in B2:

=SUMIFS($C$10:$C$15,$A$10:$A$15,B$1,$B$10:$B$15,$A 2)

Copy across to D2 then down to B5:D5

If you don't want to see any 0 results I'd use a custom number format of
General;General;

--
Biff
Microsoft Excel MVP


"Flintstone" wrote in message
...
I am using Excel 2007 and need help identifying a formula to complete a
table
with data from another range of cells. I can explain best through the
following example:

I want to fill in the missing data in the Table 1 with data from Table 2.
Dog / Red needs to be updated with 111.
Cat / Blue needs to be updated with 555.
Monkey / Yellow needs to be updated with 888.

Table #1
Dog Cat Monkey
Red
Blue
Green
Yellow


Table #2
Dog Red 111
Dog Yellow 333
Cat Red 444
Cat Blue 555
Monkey Yellow 888
Monkey Blue 999

I have tried using Index, but Index uses Rows and Columns and I need a
formula that uses Columns and Columns.

Any help is greatly appreciated.



.

  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default 2007 Formula Needed to Update Table Values

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"Flintstone" wrote in message
...
Thanks Biff!

The SUMIFS function is exactly what I was looking for!

Regards,
Keith



"T. Valko" wrote:

I am using Excel 2007


Try this...

Table 1 column headers B1:D1, row headers A2:A5

Table 2 in the range A10:C15

Enter this formula in B2:

=SUMIFS($C$10:$C$15,$A$10:$A$15,B$1,$B$10:$B$15,$A 2)

Copy across to D2 then down to B5:D5

If you don't want to see any 0 results I'd use a custom number format of
General;General;

--
Biff
Microsoft Excel MVP


"Flintstone" wrote in message
...
I am using Excel 2007 and need help identifying a formula to complete a
table
with data from another range of cells. I can explain best through the
following example:

I want to fill in the missing data in the Table 1 with data from Table
2.
Dog / Red needs to be updated with 111.
Cat / Blue needs to be updated with 555.
Monkey / Yellow needs to be updated with 888.

Table #1
Dog Cat Monkey
Red
Blue
Green
Yellow


Table #2
Dog Red 111
Dog Yellow 333
Cat Red 444
Cat Blue 555
Monkey Yellow 888
Monkey Blue 999

I have tried using Index, but Index uses Rows and Columns and I need a
formula that uses Columns and Columns.

Any help is greatly appreciated.



.



  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22
Default 2007 Formula Needed to Update Table Values

Herbert,

Thank you for the information, but the link you have provided requires
"download" authentication which I will not do over the internet.

I have used Pivot Tables to compile data from a defined table, but I need to
gather data from other resources and report back in a specific format.

The SUMIFS is a new function for Excel 2007 that appears to satisfy my
needs. Thank you.


Biff - Thanks again!



"Herbert Seidenberg" wrote:

Excel 2007 PivotTable
No formulas.
http://c0718892.cdn.cloudfiles.racks.../02_23_10.xlsx

.

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
Formula Needed for lowest three values in a Column frankjh19701 Excel Worksheet Functions 12 March 25th 10 01:50 PM
How to update the label of the column header in an excel 2007 table. easycapital Excel Worksheet Functions 1 September 13th 09 03:51 AM
Help needed with creating a Formula in Excel 2007 please ? Gerry1234567 Excel Worksheet Functions 11 December 9th 08 09:26 PM
formula needed to bring values to another sheet veena Excel Worksheet Functions 2 June 5th 07 05:58 PM
formula help needed (if values) [email protected] Excel Discussion (Misc queries) 3 January 19th 07 08:38 PM


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