Recent content by XPS35

  1. XPS35

    Solved Update records through a recordset

    Nothing is updated bacause of the If rs!DogID = "" Change that to If IsNull(rs!DogID)
  2. XPS35

    Lookup and assign value based upon text within alpha range

    Like this? Dim companyF As String companyF = Left([Company_Name], 2) Me.Assigned_To = DLookup("[Analyst]", "[tbl_company_analysts]", "[first2_char] = '" & companyF & "'")
  3. XPS35

    Problem with 'Like' SQL filter

    You need to remove the =.
  4. XPS35

    Automatic field update

    If a field can be automatically update, you do not need to store it. Use a query to show the related value.
  5. XPS35

    Query to return one id for all unique combinations of four columns

    Create a group by query. Group on the four fields and add the MIN s_id.
  6. XPS35

    Solved I suspect this super simple query is giving me what i asked for not what I wanted

    Google is your best friend. You will find sites like THIS.
  7. XPS35

    Update Field with Exp date and batch after barcode scan

    1. It looks like the yymmdd is not always on the same position. This makes it almost impossible to make a procedure that will extract the right value. 2. I do not understand this at all.
  8. XPS35

    Help with simple design

    I think you should first explain more about the purpose of the database. What you mention here doesn't mean much. Because I also see a quantity field, it could be a stock administration. This would mean that you record stock changes in one or more separate tables. Simply manually changing the...
  9. XPS35

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

    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.
  10. XPS35

    Gaps in records

    Why do you store both numbers? If the begin number is equal to the previous end number by defenition, there is no need to store both. In your setup you may also encounter overlapping numbers. Like: 10, 69, 77 Any validation will only tell you there is something wrong. But not what is wrong. The...
  11. XPS35

    Gaps in records

    First explain what you mean by a gap and provide example data.
  12. XPS35

    Emmanuel Katto Dubai : What does error code 3734 mean when copying objects from one database to another?

    In any case, the fact is that this user has asked 5 questions so far and has never responded to the answers given.
  13. XPS35

    How do I code delete a record from a combo Box with a button

    As far as I can see AuthorsType is not a control on the form, so Sub AuthorsType_LostFocus() will never be executed. It seems that you are not doing anything with the solutions offered. I tested my solution (obviously) before posting it. As I already wrote, you have to look at what you do with...
  14. XPS35

    How do I code delete a record from a combo Box with a button

    It depends on whether you want to remove an author even if there are related books. If you do want that, the books must also be removed. To achieve this, you must adjust a property of the relationship between authors and books (enable cascade delete). You can then delete an author and the...
Back
Top Bottom