Results 1 to 5 of 5
  1. #1
    roxdrob is offline Advanced Beginner
    Windows 10 Access 2016
    Join Date
    Oct 2017
    Posts
    32

    Syntax for HTTP

    Is there a quick way to set up a hyperlink in a query by concatenating "https://www.amazon.com/dp/" & a alpha-numeric identifying number? The id no would be from the table, the http info would be static



    i.e., =concatenate("https://www.amazon.com/dp/",B072WWQZKP)

  2. #2
    June7's Avatar
    June7 is offline VIP
    Windows 10 Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,822
    There is no intrinsic concatenate function in Access or VBA. Use & character to concatenate strings and variables.

    =https://www.amazon.com/dp/ & [field name]

    My question is how do you plan to retrieve value from table?
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  3. #3
    roxdrob is offline Advanced Beginner
    Windows 10 Access 2016
    Join Date
    Oct 2017
    Posts
    32
    SELECT tblStatus.Status, tblSoldBy.SoldBy, tblJewelry.InventoryNr, tblPricing.EtsyHyperlink, "#https://www.amazon.com/dp/" & [Amazon_ASIN] AS Expr1, tblJewelry.DateSold
    FROM tblStatus RIGHT JOIN (tblSoldBy RIGHT JOIN (tblJewelry INNER JOIN tblPricing ON tblJewelry.InventoryID = tblPricing.InventoryID) ON tblSoldBy.SoldByID = tblJewelry.SoldByID) ON tblStatus.StatusID = tblJewelry.StatusID
    WHERE (((tblJewelry.DateSold)>#9/1/2017#));

  4. #4
    orange's Avatar
    orange is online now Moderator
    Windows 10 Access 2010 32bit
    Join Date
    Sep 2009
    Location
    Ottawa, Ontario, Canada; West Palm Beach FL
    Posts
    16,716
    You might want to review this post for ideas.

    Is this a class project/assignment or coincidence?

  5. #5
    roxdrob is offline Advanced Beginner
    Windows 10 Access 2016
    Join Date
    Oct 2017
    Posts
    32
    no, that's me

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Control alters text to HTTP
    By JeroenMioch in forum Forms
    Replies: 7
    Last Post: 11-06-2015, 07:27 AM
  2. Replies: 4
    Last Post: 10-31-2010, 10:35 AM
  3. Replies: 2
    Last Post: 07-31-2010, 11:45 PM
  4. Replies: 1
    Last Post: 06-08-2010, 12:08 PM
  5. Http
    By student123xyz in forum Access
    Replies: 0
    Last Post: 09-03-2009, 08:59 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums