Search results

  1. K

    Query not giving expected multiplication results

    I said that's what the pounds were set to. Pounds are a weight, they can't be set to currency.
  2. K

    Design/Structure Ideas for Data Entry form with multiple levels

    Huh. Well besides adding the tblCustomerStop with it's 2 fields of CustomerID and StopID I'm not sure at all what else I need to do. Honestly, I'm not even sure how to utilize that table since everything is set up the way I was doing it. But I'm trying to populate the new table. Right now I'm...
  3. K

    Design/Structure Ideas for Data Entry form with multiple levels

    I have an additional table setup now to just combine customer and stop number. So if anyone has any ideas on my original question of how to set up the data entry I would love to hear them! Nothing I've tried has worked. Using tb;CustomerStop as the go between as a subform, I set it to default as...
  4. K

    Design/Structure Ideas for Data Entry form with multiple levels

    The way the queries are set up now is to match the LoadID, StopNumber and CustomerID from the tblStopFeesDetail and tblStops. Then I either group them by LoadID only if it's to report from that side, or by CustomerID if it's from the invoicing side. The Load reports don't look at what customer...
  5. K

    Design/Structure Ideas for Data Entry form with multiple levels

    Exactly! I just figured that criteria out today and that is when I got stuck and decided I needed some ideas. This project has been down 4 dead end paths so far so I'm not looking at it very clearly. Should step back for a day and regroup but I just need to be done! Lol. I was trying to decide...
  6. K

    Design/Structure Ideas for Data Entry form with multiple levels

    Except for the trucks. They are owned by this company not the trucking company. They're a separate entity all together. A load can only be hauled by one truck. The tblTrucks gets updated with the new miles added on and that's reported on when they need serviced or something is expiring on them...
  7. K

    Design/Structure Ideas for Data Entry form with multiple levels

    This is the copy I've been playing with so pay no mind to some of my "experiments", but you'll get where I'm trying to go. The data entry of the loads and the invoicing are the sole purpose of the Db. One is looked at from the load side, the other by the customer side. they aren't a very large...
  8. K

    Design/Structure Ideas for Data Entry form with multiple levels

    Almost, trucks have nothing to do with trucking company, only drivers do. A trucking company has many drivers. A date can have many loads. A load can only have 1 truck, date, driver, trucking company, perPoundRate, Miles and Cost. A load has multiple stops. A stop can have multiple customers. A...
  9. K

    Design/Structure Ideas for Data Entry form with multiple levels

    The cut off one is tblTrucks if you can't tell.
  10. K

    Design/Structure Ideas for Data Entry form with multiple levels

    I don't like the way the drivers and trucking companies are set up but couldn't really figure out another way to be able to look up a driver by their Company and by the Load.
  11. K

    Design/Structure Ideas for Data Entry form with multiple levels

    I thought I had a direction I was going then yet another criteria arose and I'm just having a hard time picturing it. I've also just been staring at it for too long. In the attached pic is what I had but now there can be more than 1 customer per stop so the subform on the right won't work. The...
  12. K

    Query not giving expected multiplication results

    The data type in the table is Currency.
  13. K

    Query not giving expected multiplication results

    Well that seems to have done it! Thank you. It probably would help if my dummy data was a little more realistic, and honestly my python faker scripts usually hit it right on the mark but I guess truck driving just isn't a learned type yet. Lol.
  14. K

    Query not giving expected multiplication results

    This is what I got using the Module.....*ugh
  15. K

    Query not giving expected multiplication results

    Yeah, that did no good at all. Still the same results.
  16. K

    Query not giving expected multiplication results

    So, I created a table with a few of the same numbers, they multiplied correctly because in the table I set them to Double and 4 decimal places. At least I'm assuming that's the difference. But in queries it doesn't give you the option to format that specifically. And in my source table I have...
  17. K

    Query not giving expected multiplication results

    I know rounding can almost always be an issue, which is why I usually don't convert values to currency until the "end" when they're being displayed or used for end use cases. But this is just glaringly odd and definitely not a rounding issue. Some of the values are off by way too much for...
  18. K

    Read headers from Excel Worksheet

    Okay, below is the final working code. Thank you guys so much for the help! For anyone else using this in the future, make sure to set the value of the combobox to Null before this code runs. And set the column width to more than the 0" default so you can see it! Lol The only downside is that...
  19. K

    Read headers from Excel Worksheet

    That's the question though.....how do I set the range? I need all the headers, it will always start at A1 but every file will have different numbers of columns. So the range needs to be dynamic and return the value of every cell in row 1 until it's empty.
  20. K

    Read headers from Excel Worksheet

    Okay so this...… Debug.Print objWsh.Range("A1").Value DOES WORK!!! Yay!! Lol. 1 step out of the way. So now how do I get it to read all the way across row 1 until there isn't anything left? I felt like I could do something with the line "Set Rng = objWsh("A" & I).End(xlToRight).Column" but no...
Back
Top Bottom