<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comments on: Looking up data in a cross reference table in excel</title> <atom:link href="http://www.get-digital-help.com/2009/06/24/looking-up-data-in-a-cross-reference-table-in-excel/feed/" rel="self" type="application/rss+xml" /><link>http://www.get-digital-help.com/2009/06/24/looking-up-data-in-a-cross-reference-table-in-excel/</link> <description>Quality excel resource</description> <lastBuildDate>Sat, 11 Feb 2012 15:14:13 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>By: Deepak</title><link>http://www.get-digital-help.com/2009/06/24/looking-up-data-in-a-cross-reference-table-in-excel/comment-page-1/#comment-38402</link> <dc:creator>Deepak</dc:creator> <pubDate>Tue, 22 Nov 2011 08:47:38 +0000</pubDate> <guid
isPermaLink="false">http://www.get-digital-help.com/?p=1755#comment-38402</guid> <description>i am facing a problem with two tables -
Table 1
column1 column2  column3
row1     a        1       2
row2     b        3       4
row3     c        5       6
row4     d        7       8
Table 2
column1 column2  column3
row1     a        a       a
row2     b        b       b
row3     c        d
row4     d
Now i&#039;m trying to put a formula such that from table 2, if column 1 is referred, it should then refer to table 1 and pick corresponding values from either column 1 or 2 and add the values and give results - in above case, if from table 2, column 3 is selcted, then i shoudl get the result as (1+3 = 4 or 2+4 = 6 depending on what column is required to be referred in table 1.</description> <content:encoded><![CDATA[<p>i am facing a problem with two tables -<br
/> Table 1<br
/> column1 column2  column3<br
/> row1     a        1       2<br
/> row2     b        3       4<br
/> row3     c        5       6<br
/> row4     d        7       8</p><p>Table 2</p><p> column1 column2  column3<br
/> row1     a        a       a<br
/> row2     b        b       b<br
/> row3     c        d<br
/> row4     d</p><p>Now i'm trying to put a formula such that from table 2, if column 1 is referred, it should then refer to table 1 and pick corresponding values from either column 1 or 2 and add the values and give results - in above case, if from table 2, column 3 is selcted, then i shoudl get the result as (1+3 = 4 or 2+4 = 6 depending on what column is required to be referred in table 1.</p> ]]></content:encoded> </item> <item><title>By: Oscar</title><link>http://www.get-digital-help.com/2009/06/24/looking-up-data-in-a-cross-reference-table-in-excel/comment-page-1/#comment-32034</link> <dc:creator>Oscar</dc:creator> <pubDate>Fri, 26 Aug 2011 13:17:06 +0000</pubDate> <guid
isPermaLink="false">http://www.get-digital-help.com/?p=1755#comment-32034</guid> <description>Russel,
I simplified the formula to make it easier to read.
But you could also create named ranges for each table, I tried and it works.</description> <content:encoded><![CDATA[<p>Russel,</p><p>I simplified the formula to make it easier to read.</p><p>But you could also create named ranges for each table, I tried and it works.</p> ]]></content:encoded> </item> <item><title>By: Russel</title><link>http://www.get-digital-help.com/2009/06/24/looking-up-data-in-a-cross-reference-table-in-excel/comment-page-1/#comment-31930</link> <dc:creator>Russel</dc:creator> <pubDate>Thu, 25 Aug 2011 09:36:05 +0000</pubDate> <guid
isPermaLink="false">http://www.get-digital-help.com/?p=1755#comment-31930</guid> <description>Oscar,
Great, works like a charm!
One question more,is the &quot;formula_tbl_1&quot; an example-shortcut of writing this
INDEX(B2:F4, MATCH(C11, A2:A4, 0), MATCH(C12, B1:F1, 0))), INDEX(B7:E8, MATCH(C11, A7:A8, 0), MATCH(C12, B6:E6)
Or there is a way, to name your formula, like named ranges?</description> <content:encoded><![CDATA[<p>Oscar,</p><p>Great, works like a charm!<br
/> One question more,is the "formula_tbl_1" an example-shortcut of writing this<br
/> INDEX(B2:F4, MATCH(C11, A2:A4, 0), MATCH(C12, B1:F1, 0))), INDEX(B7:E8, MATCH(C11, A7:A8, 0), MATCH(C12, B6:E6)</p><p>Or there is a way, to name your formula, like named ranges?</p> ]]></content:encoded> </item> <item><title>By: Oscar</title><link>http://www.get-digital-help.com/2009/06/24/looking-up-data-in-a-cross-reference-table-in-excel/comment-page-1/#comment-31878</link> <dc:creator>Oscar</dc:creator> <pubDate>Wed, 24 Aug 2011 12:08:05 +0000</pubDate> <guid
isPermaLink="false">http://www.get-digital-help.com/?p=1755#comment-31878</guid> <description>Russel,
Yes!
&lt;div id=&quot;code1&quot;&gt;=IF(ISERROR(formula_tbl_1), IF(ISERROR(formula_tbl_2)), IF(ISERROR(formula_tbl_3), formula_tbl_4,formula_tbl_3),formula_tbl_2), formula_tbl_1)&lt;/div&gt;
I removed some brackets.</description> <content:encoded><![CDATA[<p>Russel,</p><p>Yes!</p><div
id="code1">=IF(ISERROR(formula_tbl_1), IF(ISERROR(formula_tbl_2)), IF(ISERROR(formula_tbl_3), formula_tbl_4,formula_tbl_3),formula_tbl_2), formula_tbl_1)</div><p>I removed some brackets.</p> ]]></content:encoded> </item> <item><title>By: Russel</title><link>http://www.get-digital-help.com/2009/06/24/looking-up-data-in-a-cross-reference-table-in-excel/comment-page-1/#comment-31867</link> <dc:creator>Russel</dc:creator> <pubDate>Wed, 24 Aug 2011 09:48:10 +0000</pubDate> <guid
isPermaLink="false">http://www.get-digital-help.com/?p=1755#comment-31867</guid> <description>Oscar,
I try the function,now with 4 tables!And I guess that is something like this
=IF(ISERROR(formula_tbl_1)), IF(ISERROR(formula_tbl_2)), IF(ISERROR(formula_tbl_3)), formula_tbl_4),formula_tbl_3)formula_tbl_2), formula_tbl_1)
Right?
For one more time,thank you very much!</description> <content:encoded><![CDATA[<p>Oscar,</p><p>I try the function,now with 4 tables!And I guess that is something like this</p><p>=IF(ISERROR(formula_tbl_1)), IF(ISERROR(formula_tbl_2)), IF(ISERROR(formula_tbl_3)), formula_tbl_4),formula_tbl_3)formula_tbl_2), formula_tbl_1)</p><p>Right?</p><p>For one more time,thank you very much!</p> ]]></content:encoded> </item> <item><title>By: Oscar</title><link>http://www.get-digital-help.com/2009/06/24/looking-up-data-in-a-cross-reference-table-in-excel/comment-page-1/#comment-31801</link> <dc:creator>Oscar</dc:creator> <pubDate>Tue, 23 Aug 2011 07:45:33 +0000</pubDate> <guid
isPermaLink="false">http://www.get-digital-help.com/?p=1755#comment-31801</guid> <description>Russel,
Two index functions:
=IF(ISERROR(formula_tbl_1)), formula_tbl_2, formula_tbl_1)
Three index functions:
=IF(ISERROR(formula_tbl_1)), IF(ISERROR(formula_tbl_2)), formula_tbl_3), formula_tbl_2), formula_tbl_1)</description> <content:encoded><![CDATA[<p>Russel,</p><p>Two index functions:<br
/> =IF(ISERROR(formula_tbl_1)), formula_tbl_2, formula_tbl_1)</p><p>Three index functions:<br
/> =IF(ISERROR(formula_tbl_1)), IF(ISERROR(formula_tbl_2)), formula_tbl_3), formula_tbl_2), formula_tbl_1)</p> ]]></content:encoded> </item> <item><title>By: Russel</title><link>http://www.get-digital-help.com/2009/06/24/looking-up-data-in-a-cross-reference-table-in-excel/comment-page-1/#comment-31736</link> <dc:creator>Russel</dc:creator> <pubDate>Mon, 22 Aug 2011 10:48:09 +0000</pubDate> <guid
isPermaLink="false">http://www.get-digital-help.com/?p=1755#comment-31736</guid> <description>Oscar,
Hello again!
Is there a &quot;logic-form&quot; for above 3 tables?Always with the if(iserror)?</description> <content:encoded><![CDATA[<p>Oscar,</p><p>Hello again!<br
/> Is there a "logic-form" for above 3 tables?Always with the if(iserror)?</p> ]]></content:encoded> </item> <item><title>By: Oscar</title><link>http://www.get-digital-help.com/2009/06/24/looking-up-data-in-a-cross-reference-table-in-excel/comment-page-1/#comment-31728</link> <dc:creator>Oscar</dc:creator> <pubDate>Mon, 22 Aug 2011 09:06:44 +0000</pubDate> <guid
isPermaLink="false">http://www.get-digital-help.com/?p=1755#comment-31728</guid> <description>Russel,
thanks.
The iferror function is easier.</description> <content:encoded><![CDATA[<p>Russel,</p><p>thanks.</p><p>The iferror function is easier.</p> ]]></content:encoded> </item> <item><title>By: Russel</title><link>http://www.get-digital-help.com/2009/06/24/looking-up-data-in-a-cross-reference-table-in-excel/comment-page-1/#comment-31513</link> <dc:creator>Russel</dc:creator> <pubDate>Fri, 19 Aug 2011 11:59:35 +0000</pubDate> <guid
isPermaLink="false">http://www.get-digital-help.com/?p=1755#comment-31513</guid> <description>Oscar,
You are GREAT!The God of the excel...i try to convert to if(iserror)
but I forget the third Index...witch i believe make the difference!
And I think with the If(iserror is more easy for above the 3 tables right?</description> <content:encoded><![CDATA[<p>Oscar,</p><p>You are GREAT!The God of the excel...i try to convert to if(iserror)<br
/> but I forget the third Index...witch i believe make the difference!</p><p>And I think with the If(iserror is more easy for above the 3 tables right?</p> ]]></content:encoded> </item> <item><title>By: Russel</title><link>http://www.get-digital-help.com/2009/06/24/looking-up-data-in-a-cross-reference-table-in-excel/comment-page-1/#comment-31510</link> <dc:creator>Russel</dc:creator> <pubDate>Fri, 19 Aug 2011 11:48:18 +0000</pubDate> <guid
isPermaLink="false">http://www.get-digital-help.com/?p=1755#comment-31510</guid> <description>Also, if the tables are more than 2, is the same type right?</description> <content:encoded><![CDATA[<p>Also, if the tables are more than 2, is the same type right?</p> ]]></content:encoded> </item> </channel> </rss>
