Results 1 to 3 of 3
  1. #1
    DaKetch is offline Novice
    Windows 10 Access 2016
    Join Date
    Mar 2019
    Location
    United States
    Posts
    22

    Combo Box Assistance Needed

    I have an input form that has a combo box that looks up an Employer. The box has the following SQL attached:



    SELECT [tbl_AgencyInfo].[ID], [tbl_AgencyInfo].[Agency_Name], [tbl_AgencyInfo].[Agency_Address], [tbl_AgencyInfo].[Agency_City], [tbl_AgencyInfo].[Agency_State], [tbl_AgencyInfo].[Agency_Zip], [tbl_AgencyInfo].[Agency_Phone_1] FROM tbl_AgencyInfo ORDER BY [Agency_Name];

    I would like to then take the Address add a vbCRLF then place the City, state zip on the second line of the Address box.

    I don't want to create a subform for a single field on the form. Does anyone know of a way to complete this?

    Thank you!

  2. #2
    June7's Avatar
    June7 is offline VIP
    Windows 10 Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,649
    If you want to display the address info in a textbox:

    =[comboboxname].Column(2) & Chr(13) & Chr(10) & [comboboxname].Column(3) & ", " [comboboxname].Column(4) & " " & [comboboxname].Column(5)
    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
    DaKetch is offline Novice
    Windows 10 Access 2016
    Join Date
    Mar 2019
    Location
    United States
    Posts
    22
    Thank you, June7!

    That worked!

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

Similar Threads

  1. SubDatasheet Assistance Needed
    By Faeyren in forum Access
    Replies: 2
    Last Post: 02-22-2017, 10:27 AM
  2. Replies: 7
    Last Post: 06-04-2015, 09:46 AM
  3. simple assistance needed
    By gkaro in forum Access
    Replies: 4
    Last Post: 10-17-2013, 11:41 AM
  4. Form Combo Box assistance for Novice
    By piper in forum Forms
    Replies: 1
    Last Post: 04-22-2011, 12:53 AM
  5. Query Assistance Needed
    By elotromanuel in forum Queries
    Replies: 1
    Last Post: 03-17-2009, 09:31 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