Is it Possible create a sub-field or a table from a field ???

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Bishrul
    New Member
    • May 2020
    • 8

    Is it Possible create a sub-field or a table from a field ???

    Scenario - (while transporting live chicken from supplier to wholesale customer)chicke ns will be loaded into boxes then to the truck, so each box has a different quantity of chickens Ex- Box 1 - 11 Chickens
    Box 2 - 16 Chickens etc..
    each an every box must be entered individually not as whole quantity, So is it possible to have field where the total boxes will be mentioned and within that field to have the record of individual boxes??
  • Luuk
    Recognized Expert Top Contributor
    • Mar 2012
    • 1043

    #2
    "So is it possible to have field where the total boxes will be mentioned and within that field to have the record of individual boxes??"

    No, that is not possible, because then you will be storing two values in 1 field.
    1) where the total boxes will be mentioned
    2) have the record of individual boxes??

    Comment

    • Bishrul
      New Member
      • May 2020
      • 8

      #3
      Thanks alot Luuk!!!

      So any suggestion to do that?

      Comment

      • twinnyfo
        Recognized Expert Moderator Specialist
        • Nov 2011
        • 3653

        #4
        I would have a table (tblBoxes) that simply keeps track of each box on a truck: BoxID, TruckID, Chickens.

        Then you count how many BoxID's for each truck, and get a sum Chickens for your total number of chickens on each truck.

        Hope that hepps!

        Comment

        • NeoPa
          Recognized Expert Moderator MVP
          • Oct 2006
          • 32633

          #5
          So would I ;-)

          The counting would be done in a Query of course.

          Comment

          • Bishrul
            New Member
            • May 2020
            • 8

            #6
            k thanks a lot guys!

            Comment

            Working...