+ Reply to Thread
Results 1 to 2 of 2

Which function should I use to ....

  1. #1
    Registered User
    Join Date
    10-02-2005
    Posts
    8

    Which function should I use to ....

    Hello,

    I have got three columns A, B, C.

    In column A I have 7 fax numbers. In column B I have 7 URLs where faxes have been extracted from. In column C I have 14 URLs in which, among others, are included the exact URLs in column B.

    I want associate faxes in column A with URLs (matched with those in column B) present in column C.


    Ex.

    COL A
    1 1-785-227-2004
    2 208-376-7743
    3 (617) 912-9101
    4 267-502-2658
    5 (317) 940-9930
    6 716-888-2525
    7 (219) 473-4259

    COL B
    1 www.bethanylb.edu/
    2 www.boisebible.edu/
    3 www.conservatory.edu/
    4 www.brynathyn.edu/
    5 www.butler.edu/
    6 www.canisius.edu/
    7 www.ccsj.edu/


    COL C--------------------------------------- COL D
    1 www.ab.edu/
    2 www.abc.edu/
    3 www.abconline.edu/
    4 www.ac.edu/
    5 www.aca.edu/
    6 www.academy.edu/
    7 www.boisebible.edu/-----------> 208-376-7743
    8 www.boisestate.edu/
    9 www.brevard.edu/
    10 www.canisius.edu/-------------> 716-888-2525
    11 www.carleton.edu/
    12 www.carroll.edu/
    13 www.ccsj.edu/------------------> (219) 473-4259
    14 www.clemson.edu/


    Which function should I use in order to get faxes in Col A and put them next to the appropriate URLs (matched with URLs in column B) in column C ?


    Thanks a lot !!

    Fabio
    Last edited by world33; 10-02-2005 at 01:30 AM.

  2. #2
    Forum Contributor
    Join Date
    03-13-2005
    Posts
    6,195
    Hi,

    If your data in columns A and B were reversed, then you could use vlookup.

    Insert a new Column C and copy Column A to the blank Column C, then delete Column A.

    In cell D1 put

    =IF(ISERROR(VLOOKUP(C1,A$1:B$999,2,FALSE)),"",VLOOKUP(C1,A$1:B$999,2,FALSE))

    where the range A$1:B$999 needs to specify the range of your data.

    Hope this helps



    Quote Originally Posted by world33
    Hello,

    I have got three columns A, B, C.

    In column A I have 7 fax numbers. In column B I have 7 URLs where faxes have been extracted from. In column C I have 14 URLs in which, among others, are included the exact URLs in column B.

    I want associate faxes in column A with URLs (matched with those in column B) present in column C.


    Ex.

    COL A
    1 1-785-227-2004
    2 208-376-7743
    3 (617) 912-9101
    4 267-502-2658
    5 (317) 940-9930
    6 716-888-2525
    7 (219) 473-4259

    COL B
    1 www.bethanylb.edu/
    2 www.boisebible.edu/
    3 www.conservatory.edu/
    4 www.brynathyn.edu/
    5 www.butler.edu/
    6 www.canisius.edu/
    7 www.ccsj.edu/


    COL C--------------------------------------- COL D
    1 www.ab.edu/
    2 www.abc.edu/
    3 www.abconline.edu/
    4 www.ac.edu/
    5 www.aca.edu/
    6 www.academy.edu/
    7 www.boisebible.edu/-----------> 208-376-7743
    8 www.boisestate.edu/
    9 www.brevard.edu/
    10 www.canisius.edu/-------------> 716-888-2525
    11 www.carleton.edu/
    12 www.carroll.edu/
    13 www.ccsj.edu/------------------> (219) 473-4259
    14 www.clemson.edu/


    Which function should I use in order to get faxes in Col A and put them next to the appropriate URLs (matched with URLs in column B) in column C ?


    Thanks a lot !!

    Fabio

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1