Closed Thread
Results 1 to 12 of 12

hyperlink formula using index/match or vlookup?

Hybrid View

rishijain11 hyperlink formula using... 06-04-2014, 10:45 AM
haripopuri Re: hyperlink formula using... 06-04-2014, 10:59 AM
rishijain11 Re: hyperlink formula using... 06-04-2014, 11:17 AM
haripopuri Re: hyperlink formula using... 06-04-2014, 11:28 AM
rishijain11 Re: hyperlink formula using... 06-04-2014, 11:35 AM
haripopuri Re: hyperlink formula using... 06-04-2014, 11:42 AM
rishijain11 Re: hyperlink formula using... 06-04-2014, 11:43 AM
haripopuri Re: hyperlink formula using... 06-04-2014, 11:40 AM
rishijain11 Re: hyperlink formula using... 06-04-2014, 11:42 AM
haripopuri Re: hyperlink formula using... 06-04-2014, 11:44 AM
haripopuri Re: hyperlink formula using... 06-04-2014, 11:50 AM
arlu1201 Re: hyperlink formula using... 06-04-2014, 11:58 AM
  1. #1
    Banned User!
    Join Date
    05-06-2014
    Location
    Florida
    MS-Off Ver
    Excel 2010
    Posts
    52

    hyperlink formula using index/match or vlookup?

    so i'm trying to do this:

    - goto cell A4; look for it in Sheet2, column A;
    - then return what that row has in column G, followed by a "," (so as to allow sending an email to multiple recipients) followed by what that row has in column H;
    - followed by what is in cell B4, and making that the subject.



    i'm trying to work on this, but dont know how to implement either index/match or vlookup aspect
    =HYPERLINK(CONCATENATE("mailto:",G3,H3,"?subject=",B4,),"Send e-mail")



    appreciate any help!

  2. #2
    Valued Forum Contributor
    Join Date
    11-02-2012
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003, 2007, 2010
    Posts
    564

    Re: hyperlink formula using index/match or vlookup?

    This will get you what is in column G, H and combine that with B4.
    =INDEX(Sheet2!A:H,MATCH(A4,Sheet2!A:A,0),7) & "," &INDEX(Sheet2!A:H,MATCH(A4,Sheet2!A:A,0),8) & "," & B4
    I didn't understand the last part.

  3. #3
    Banned User!
    Join Date
    05-06-2014
    Location
    Florida
    MS-Off Ver
    Excel 2010
    Posts
    52

    Re: hyperlink formula using index/match or vlookup?

    thanks for replying...

    cell b4 should be input as the subject line of the email is what i was trying to say..

  4. #4
    Valued Forum Contributor
    Join Date
    11-02-2012
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003, 2007, 2010
    Posts
    564

    Re: hyperlink formula using index/match or vlookup?

    Formula's cannot place email subjects. You will have to use macros to do that.

  5. #5
    Banned User!
    Join Date
    05-06-2014
    Location
    Florida
    MS-Off Ver
    Excel 2010
    Posts
    52

    Re: hyperlink formula using index/match or vlookup?

    you're wrong. you can place email subjects and even body text with a formula


    =HYPERLINK(CONCATENATE("mailto:",C3,C4,C5,"?subject=",D3,"?body=",E3),"Send e-mail")

  6. #6
    Valued Forum Contributor
    Join Date
    11-02-2012
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003, 2007, 2010
    Posts
    564

    Re: hyperlink formula using index/match or vlookup?

    Anyway, you got how to get the values from different cells using Index & Match. Need help with hyperlink?

  7. #7
    Banned User!
    Join Date
    05-06-2014
    Location
    Florida
    MS-Off Ver
    Excel 2010
    Posts
    52

    Re: hyperlink formula using index/match or vlookup?

    considering that the title of the thread is hyperlink formula, what do you think

  8. #8
    Valued Forum Contributor
    Join Date
    11-02-2012
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003, 2007, 2010
    Posts
    564

    Re: hyperlink formula using index/match or vlookup?

    No, I am not wrong. This formula only places a hyperlink in Excel and you will have to click it to open outlook and place the subject. I am talking about a macro that opens outlook and place subject on it's own.

  9. #9
    Banned User!
    Join Date
    05-06-2014
    Location
    Florida
    MS-Off Ver
    Excel 2010
    Posts
    52

    Re: hyperlink formula using index/match or vlookup?

    what're you even talking about?

    you click the link and then the subject and body are automatically populated with whatever you indicated in the formula....

    you dont need a macro for that

  10. #10
    Valued Forum Contributor
    Join Date
    11-02-2012
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003, 2007, 2010
    Posts
    564

    Re: hyperlink formula using index/match or vlookup?

    Missed that part, my bad.

  11. #11
    Valued Forum Contributor
    Join Date
    11-02-2012
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003, 2007, 2010
    Posts
    564

    Re: hyperlink formula using index/match or vlookup?

    i'm trying to work on this, but dont know how to implement either index/match or vlookup aspect
    Concentrated on this part earlier.

    Embedded Index & Match part in the Hyperlink formula.
    =HYPERLINK(CONCATENATE("mailto:", INDEX(Sheet2!A:H,MATCH(A4,Sheet2!A:A,0),7) & "," &INDEX(Sheet2!A:H,MATCH(A4,Sheet2!A:A,0),8),"?subject=",B4,),"Send e-mail")

  12. #12
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,166

    Re: hyperlink formula using index/match or vlookup?

    Thread posted in Commercial services, hence closed.
    If I have helped, Don't forget to add to my reputation (click on the star below the post)
    Don't forget to mark threads as "Solved" (Thread Tools->Mark thread as Solved)
    Use code tags when posting your VBA code: [code] Your code here [/code]

Closed Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. VLOOKUP or INDEX/MATCH Formula that uses LARGE, IF, and OR
    By tj2434 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 02-24-2014, 10:16 AM
  2. Replies: 4
    Last Post: 01-13-2014, 04:16 AM
  3. help with index/match or vlookup/match formula
    By tsiguy96 in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 08-27-2013, 07:57 PM
  4. which formula to use, vlookup, match, index or ??
    By efour in forum Excel General
    Replies: 2
    Last Post: 03-23-2010, 06:32 AM
  5. n/a in vlookup/index/match formula
    By andrewm in forum Excel Formulas & Functions
    Replies: 38
    Last Post: 09-06-2005, 12:05 PM

Tags for this Thread

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