Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 234743
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T20:12:34+00:00 2026-05-11T20:12:34+00:00

I have 3 tables which look like this: Location Node Sektor —– ——- ——-

  • 0

I have 3 tables which look like this:

Location                Node                 Sektor
-----                   -------              -------
PK: ID - Autonumber     PK: ID - Autonumber  PK: ID - Autonumber
Name                    NodeName             Sektor
Height                  Aksess               Frequency
Latitude                Tag                  Coverage
Longtitude              IP

Each location is connected with multiple nodes which is connected with multiple sektors.

Now the interesting part. In Microsoft Access you can make schemas which allows users to easily add data. I have the final table looking like this which I want to use my schema to insert data into:

Customers
-------
PK: CustID
Name
Subscribtion
Sektor

This is where I want the magic to be done. I want the user to be able to first select a location, then be presented with available nodes (preferably in dropdown) and finally he can pick the correct sektor for the customer hes adding.

Anyone know a fairly easy way of doing this? I started making a macro for this, but my memory of macros are really bad atm, and I dont have the correct literature with me atm to look it up.

Any help appriciated =)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T20:12:34+00:00Added an answer on May 11, 2026 at 8:12 pm

    It is a very bad idea indeed to name anything Name.

    It seems to me that you need cascading comboboxes. You will need a little VBA.

    Two combo boxes called, say, cboLocation and cboNodes, on a forrm called, say, frmForm

    cboLocation

    RowSource: SELECT ID, [Name]
    FROM Locations
    ORDER BY [Name]
    
    ColumnCount: 2
    
    ColumnWidths: 0;2.00cm  ''The second column can be any suitable width
    
    LimitToList: Yes
    

    Events:

    Private Sub cboLocation_AfterUpdate()
        Me.cboNode.Requery
    End Sub
    

    CboNode

    RowSource: SELECT ID, NodeName
    FROM Nodes
    WHERE IP=[Forms]![frmForm]![cboLocation]
    ORDER BY NodeName
    
    ColumnCount: 2
    
    ColumnWidths: 0;2.00 ''Ditto
    
    LimitToList: Yes
    

    Events:

    Private Sub cboNode_GotFocus()
        If Trim(Me.cboLocation & "") = vbNullString Then
            MsgBox "Please select location"
            Me.cboLOcation.SetFocus
        End If
    End Sub
    

    You will also need a form event:

    Private Sub Form_Current()
        Me.cboNode.Requery
    End Sub
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 184k
  • Answers 184k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Yes, you got that right. Read declarations (from the inside… May 12, 2026 at 4:52 pm
  • Editorial Team
    Editorial Team added an answer The problem was that the project was built on asp.net… May 12, 2026 at 4:52 pm
  • Editorial Team
    Editorial Team added an answer You need to create a panel with the button that… May 12, 2026 at 4:52 pm

Related Questions

I have 3 tables which look like this: Location Node Sektor ----- ------- -------
I have a couple of tables which look like this Table 1 user_id |
I have 3 different transaction tables, which look very similar, but have slight differences.
I have table with pageId, parentPageId, title columns. Is there a way to return
I'm using OleDb to select data from excel spreadsheets. Each spreadsheet can contain many

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.