Hi,
I'm having difficulty trying to pull multiple values from a single matching cell. I have data that kind of resembles this:
<b>Excel 2003</b><table cellpadding="2.5px" rules="all" style=";background-color: #FFFFFF;border: 1px solid;border-collapse: collapse; border-color: #A6AAB6"><colgroup><col width="25px" style="background-color: #E0E0F0" /><col /><col /></colgroup><thead><tr style=" background-color: #E0E0F0;text-align: center;color: #161120"><th></th><th>C</th><th>D</th></tr></thead><tbody><tr ><td style="color: #161120;text-align: center;">21</td><td style=";">Acount Number</td><td style=";">Client</td></tr><tr ><td style="color: #161120;text-align: center;">22</td><td style="text-align: right;;">45654</td><td style=";">Client A</td></tr><tr ><td style="color: #161120;text-align: center;">23</td><td style="text-align: right;;">45653</td><td style=";">Client A</td></tr><tr ><td style="color: #161120;text-align: center;">24</td><td style="text-align: right;;">45652</td><td style=";">Client A</td></tr><tr ><td style="color: #161120;text-align: center;">25</td><td style="text-align: right;;">85250</td><td style=";">Client B</td></tr><tr ><td style="color: #161120;text-align: center;">26</td><td style="text-align: right;;">85250</td><td style=";">Client C</td></tr><tr ><td style="color: #161120;text-align: center;">27</td><td style="text-align: right;;">78963</td><td style=";">Client D</td></tr></tbody></table><p style="width:3.6em;font-weight:bold;margin:0;padding:0.2em 0.6em 0.2em 0.5em;border: 1px solid #A6AAB6;border-top:none;text-align: center;background-color: #E0E0F0;color: #161120">Sheet1</p><br /><br />
but much, much larger with a lot more categories (volume, location, etc.). What I'm hoping to do is to be able make a formula that when I type in either a client name or an account number, I will get the opposite. For instance, I could type in the account number 85250 and see:
<b>Excel 2003</b><table cellpadding="2.5px" rules="all" style=";background-color: #FFFFFF;border: 1px solid;border-collapse: collapse; border-color: #A6AAB6"><colgroup><col width="25px" style="background-color: #E0E0F0" /><col /><col /></colgroup><thead><tr style=" background-color: #E0E0F0;text-align: center;color: #161120"><th></th><th>C</th><th>D</th></tr></thead><tbody><tr ><td style="color: #161120;text-align: center;">33</td><td style="text-align: right;;">85250</td><td style=";">Client B</td></tr><tr ><td style="color: #161120;text-align: center;">34</td><td style="text-align: right;;"></td><td style=";">Client C</td></tr></tbody></table><p style="width:3.6em;font-weight:bold;margin:0;padding:0.2em 0.6em 0.2em 0.5em;border: 1px solid #A6AAB6;border-top:none;text-align: center;background-color: #E0E0F0;color: #161120">Sheet1</p><br /><br />
or type in the client name "Client A" and see:
<b>Excel 2003</b><table cellpadding="2.5px" rules="all" style=";background-color: #FFFFFF;border: 1px solid;border-collapse: collapse; border-color: #A6AAB6"><colgroup><col width="25px" style="background-color: #E0E0F0" /><col /><col /></colgroup><thead><tr style=" background-color: #E0E0F0;text-align: center;color: #161120"><th></th><th>C</th><th>D</th></tr></thead><tbody><tr ><td style="color: #161120;text-align: center;">37</td><td style=";">Client A</td><td style="text-align: right;;">45652</td></tr><tr ><td style="color: #161120;text-align: center;">38</td><td style="text-align: right;;"></td><td style="text-align: right;;">45653</td></tr><tr ><td style="color: #161120;text-align: center;">39</td><td style="text-align: right;;"></td><td style="text-align: right;;">45654</td></tr></tbody></table><p style="width:3.6em;font-weight:bold;margin:0;padding:0.2em 0.6em 0.2em 0.5em;border: 1px solid #A6AAB6;border-top:none;text-align: center;background-color: #E0E0F0;color: #161120">Sheet1</p><br /><br />
I would like to do this in a completely new workbook, since I want to use this formula as a base for pulling other data for the same clients from other workbooks.
I've been trying to use an index/match formula so far but it only returns the first instance that comes up for the matching value. e.g.:
<b>Excel 2003</b><table cellpadding="2.5px" rules="all" style=";background-color: #FFFFFF;border: 1px solid;border-collapse: collapse; border-color: #A6AAB6"><colgroup><col width="25px" style="background-color: #E0E0F0" /><col /><col /></colgroup><thead><tr style=" background-color: #E0E0F0;text-align: center;color: #161120"><th></th><th>C</th><th>D</th></tr></thead><tbody><tr ><td style="color: #161120;text-align: center;">42</td><td style=";">Client A</td><td style="text-align: right;;">45652</td></tr><tr ><td style="color: #161120;text-align: center;">43</td><td style="text-align: right;;"></td><td style="text-align: right;;">45652</td></tr><tr ><td style="color: #161120;text-align: center;">44</td><td style="text-align: right;;"></td><td style="text-align: right;;">45652</td></tr></tbody></table><p style="width:3.6em;font-weight:bold;margin:0;padding:0.2em 0.6em 0.2em 0.5em;border: 1px solid #A6AAB6;border-top:none;text-align: center;background-color: #E0E0F0;color: #161120">Sheet1</p><br /><br />
I would be very grateful somebody could help me out with this problem. I've gone through a lot of threads on this message board but haven't been able to find a solution that works with my data. Thanks!
I'm having difficulty trying to pull multiple values from a single matching cell. I have data that kind of resembles this:
<b>Excel 2003</b><table cellpadding="2.5px" rules="all" style=";background-color: #FFFFFF;border: 1px solid;border-collapse: collapse; border-color: #A6AAB6"><colgroup><col width="25px" style="background-color: #E0E0F0" /><col /><col /></colgroup><thead><tr style=" background-color: #E0E0F0;text-align: center;color: #161120"><th></th><th>C</th><th>D</th></tr></thead><tbody><tr ><td style="color: #161120;text-align: center;">21</td><td style=";">Acount Number</td><td style=";">Client</td></tr><tr ><td style="color: #161120;text-align: center;">22</td><td style="text-align: right;;">45654</td><td style=";">Client A</td></tr><tr ><td style="color: #161120;text-align: center;">23</td><td style="text-align: right;;">45653</td><td style=";">Client A</td></tr><tr ><td style="color: #161120;text-align: center;">24</td><td style="text-align: right;;">45652</td><td style=";">Client A</td></tr><tr ><td style="color: #161120;text-align: center;">25</td><td style="text-align: right;;">85250</td><td style=";">Client B</td></tr><tr ><td style="color: #161120;text-align: center;">26</td><td style="text-align: right;;">85250</td><td style=";">Client C</td></tr><tr ><td style="color: #161120;text-align: center;">27</td><td style="text-align: right;;">78963</td><td style=";">Client D</td></tr></tbody></table><p style="width:3.6em;font-weight:bold;margin:0;padding:0.2em 0.6em 0.2em 0.5em;border: 1px solid #A6AAB6;border-top:none;text-align: center;background-color: #E0E0F0;color: #161120">Sheet1</p><br /><br />
but much, much larger with a lot more categories (volume, location, etc.). What I'm hoping to do is to be able make a formula that when I type in either a client name or an account number, I will get the opposite. For instance, I could type in the account number 85250 and see:
<b>Excel 2003</b><table cellpadding="2.5px" rules="all" style=";background-color: #FFFFFF;border: 1px solid;border-collapse: collapse; border-color: #A6AAB6"><colgroup><col width="25px" style="background-color: #E0E0F0" /><col /><col /></colgroup><thead><tr style=" background-color: #E0E0F0;text-align: center;color: #161120"><th></th><th>C</th><th>D</th></tr></thead><tbody><tr ><td style="color: #161120;text-align: center;">33</td><td style="text-align: right;;">85250</td><td style=";">Client B</td></tr><tr ><td style="color: #161120;text-align: center;">34</td><td style="text-align: right;;"></td><td style=";">Client C</td></tr></tbody></table><p style="width:3.6em;font-weight:bold;margin:0;padding:0.2em 0.6em 0.2em 0.5em;border: 1px solid #A6AAB6;border-top:none;text-align: center;background-color: #E0E0F0;color: #161120">Sheet1</p><br /><br />
or type in the client name "Client A" and see:
<b>Excel 2003</b><table cellpadding="2.5px" rules="all" style=";background-color: #FFFFFF;border: 1px solid;border-collapse: collapse; border-color: #A6AAB6"><colgroup><col width="25px" style="background-color: #E0E0F0" /><col /><col /></colgroup><thead><tr style=" background-color: #E0E0F0;text-align: center;color: #161120"><th></th><th>C</th><th>D</th></tr></thead><tbody><tr ><td style="color: #161120;text-align: center;">37</td><td style=";">Client A</td><td style="text-align: right;;">45652</td></tr><tr ><td style="color: #161120;text-align: center;">38</td><td style="text-align: right;;"></td><td style="text-align: right;;">45653</td></tr><tr ><td style="color: #161120;text-align: center;">39</td><td style="text-align: right;;"></td><td style="text-align: right;;">45654</td></tr></tbody></table><p style="width:3.6em;font-weight:bold;margin:0;padding:0.2em 0.6em 0.2em 0.5em;border: 1px solid #A6AAB6;border-top:none;text-align: center;background-color: #E0E0F0;color: #161120">Sheet1</p><br /><br />
I would like to do this in a completely new workbook, since I want to use this formula as a base for pulling other data for the same clients from other workbooks.
I've been trying to use an index/match formula so far but it only returns the first instance that comes up for the matching value. e.g.:
<b>Excel 2003</b><table cellpadding="2.5px" rules="all" style=";background-color: #FFFFFF;border: 1px solid;border-collapse: collapse; border-color: #A6AAB6"><colgroup><col width="25px" style="background-color: #E0E0F0" /><col /><col /></colgroup><thead><tr style=" background-color: #E0E0F0;text-align: center;color: #161120"><th></th><th>C</th><th>D</th></tr></thead><tbody><tr ><td style="color: #161120;text-align: center;">42</td><td style=";">Client A</td><td style="text-align: right;;">45652</td></tr><tr ><td style="color: #161120;text-align: center;">43</td><td style="text-align: right;;"></td><td style="text-align: right;;">45652</td></tr><tr ><td style="color: #161120;text-align: center;">44</td><td style="text-align: right;;"></td><td style="text-align: right;;">45652</td></tr></tbody></table><p style="width:3.6em;font-weight:bold;margin:0;padding:0.2em 0.6em 0.2em 0.5em;border: 1px solid #A6AAB6;border-top:none;text-align: center;background-color: #E0E0F0;color: #161120">Sheet1</p><br /><br />
I would be very grateful somebody could help me out with this problem. I've gone through a lot of threads on this message board but haven't been able to find a solution that works with my data. Thanks!