Search results

  1. theDBguy

    Update multiple records in sub form

    Hi. Welcome back! You can certainly automate some repetitive tasks in Access. For example, you can try to use an Update query to edit a bunch of records at the same time.
  2. theDBguy

    Closing Excel from Access VBA

    See if this page helps. Scroll down to the code tag. https://www.access-programmers.co.uk/forums/help/bb-codes/ Edit: Oops, looks like I forgot to send this.
  3. theDBguy

    Solved Pivot Table Summary Count minus Total Count

    I still haven't found a way without using extra columns. Please let us know if you do find a way to get rid of them. Good luck!
  4. theDBguy

    Closing Excel from Access VBA

    Hope you don't mind, I've reformatted your post to use code tags to make it easier to read.
  5. theDBguy

    Closing Excel from Access VBA

    Just in case it helps, have you seen this? https://www.devhut.net/ms-access-vba-export-recordset-to-excel/
  6. theDBguy

    Closing Excel from Access VBA

    What error messages were you getting?
  7. theDBguy

    Variables changing to fields

    Just in case it might be useful, look up TempVars too. I think you can use them directly in Control Sources without using code.
  8. theDBguy

    Hi people

    Hi. Welcome to AWF!
  9. theDBguy

    I need to be able to type in text box and for the list box to show me all similar text. No VBA )-:

    Hi. Welcome to AWF! It would be hard to work with Access without VBA enabled, but I suppose some functionalities are possible using only macros. If you need help with your macros, consider posting a sample db.
  10. theDBguy

    Solved stuck on simple issue

    Have you tried? Status<>"Rejected"
  11. theDBguy

    Mandatory FK values? "You cannot add or change a record because a related record is required in table"

    Hi. Glad to hear you got it sorted out. Good luck with your project.
  12. theDBguy

    Mandatory FK values? "You cannot add or change a record because a related record is required in table"

    I am guessing the error is showing up due to referential integrity is enabled. Just as a test, see if the error goes away if you temporarily turn RI off.
  13. theDBguy

    Solved Pivot Table Summary Count minus Total Count

    Yup! That's another way of doing it. Good luck with your project!
  14. theDBguy

    Hello Everyone

    Hi. Welcome to AWF!
  15. theDBguy

    Correlation between two records of the same table

    Actually, "tags" make more sense in Access than just simply connecting products together. In that case, when you want to list all products with a certain tag, it would be easier to query the tables by simply providing the tags as a criteria.
  16. theDBguy

    Solved Pivot Table Summary Count minus Total Count

    Hi. Sorry, I was at work yesterday and didn't have access to the file we were using, so I couldn't tell you what I did. If you open the file and go to the PivotTable Analyze tab on the Ribbon, you can click on the Fields, Items, & Sets button and select Calculated Field. From the dropdown...
  17. theDBguy

    Correlation between two records of the same table

    I was about to say the same thing (using phone, so a little slow typing). Since you said a product can relate to multiple other products, a junction table makes sense. But, it could also mean, as already mentioned, creating two separate records to describe a single relationship.
  18. theDBguy

    Solved Pivot Table Summary Count minus Total Count

    I used a Calculated Field to add the formula to get what you wanted. I tried to do it without adding the extra columns, but calculated fields work well with number columns rather than text ones. There's probably a way to do it without adding those extra columns, but I thought I would give you a...
  19. theDBguy

    Solved Pivot Table Summary Count minus Total Count

    Okay, not sure if this is the best answer, but I hope it helps...
  20. theDBguy

    How to select and also exclude criteria from same field

    Hi. Welcome to AWF! As you can see, we can do this in Access. I am not sure though how you will do it Excel using a pivot table to supply the criteria.
Top Bottom