Darshan Hiranandani : Creating a Form for Multiple Entries in a Table (Same Form) - Dispatch Details

Local time
Today, 23:23
Joined
Sep 13, 2024
Messages
8
Hello everyone,

I'm Darshan Hiranandani, I have a table called "Dispatch Details" with the following columns:

  1. Dispatch Date
  2. Party Name
  3. Truck Number
  4. Freight Charges
I’ve created a form that works for single dispatch entries. However, I now need a solution for cases where multiple parties are being dispatched using the same truck.

Specifically, I’m looking for a way to:

  1. Enter multiple dispatch entries for different parties in the same form.
  2. Calculate the freight charges for all the parties whose materials are being delivered in a single truck.
Does anyone have suggestions on how to structure this form or approach the data entry process for such cases?

Thanks in advance for your help!
Regards
Darshan Hiranandani
 
You need more than a new form, you need a new table:

Parties
partyID, autonumber primary key
IDDispatch, number, this will hold the primary key numeric id in DispatchDetails
partyName, text, data that was in PartyName of DispatchDetails is here now
FreightCharges, number, data that was in FreightCharges is here now

Formwise, you will have a main form based on DispatchDetails that will have have a subform based on the above Parties table. With that you will be able to enter as many Parties records into it as needed all on the same form.
 
I believe that we are once again dealing with a member who asks questions but never responds to the answers he receives. So don't waste your time.
 
See this same question asked by another member:
 

Users who are viewing this thread

Back
Top Bottom