Search results

  1. A

    Query not showing unique values when using <>

    Fabulous. Thank you!!
  2. A

    Query not showing unique values when using <>

    Hey all! I'm trying to make a query off another query where it will give me a list of unique managers, and the number of sales reps underneath them. I'm also trying to set it up to omit two sales reps who appear under everyone (hold placements). Here is what I have: SELECT...
  3. A

    Last Modified date added to subform record

    Of course I would have never thought to look through the sample databases :) I didn't know it was called Audit Trail. I've implemented it and it works like a charm. THANK YOU!! For any future viewers who are looking for the code, here it is. Just create a table called tblAudit with the...
  4. A

    Last Modified date added to subform record

    That is correct.
  5. A

    Last Modified date added to subform record

    Actually, what I don't understand is how to implement it. I'm still a newbie when it comes to coding. The user wouldn't be entering a new record, so that portion wouldn't be necessary. What I've gotten thus far has been somewhat complex. The user opens the database, enters some information into...
  6. A

    Last Modified date added to subform record

    Well the issue is that the filtered subform will contain many records and I only want to mark the changed ones as modified (not all the records in that filtered subform).
  7. A

    Last Modified date added to subform record

    Anyone know how I can accomplish this?
  8. A

    Last Modified date added to subform record

    I have a subform that is filtered by a textbox on the main form. Is there any way I can add a timestamp to a record on the subform when a user changes anything on that record? I've tried the Macro that is listed on Microsoft's website regarding timestamps, but I had serious issues implementing...
  9. A

    Hold Filter on Subform

    I changed the filter to what you had suggested before: strFilter = "[Rep Number] = " & Me.RepNumberField & "'" & _ " AND " & "[UserName] = '" & Me.UserNameField & "'" RepReassignmentSubform.Form.FilterOn = True This does not stop the filter from "refiltering"...
  10. A

    Hold Filter on Subform

    If the change no longer exists in the subform, I cannot export those changes easily. My goal is the manager will reassign in the subform, click a button, and it will email me the changes so I can deal with it on my end.
  11. A

    Hold Filter on Subform

    I'm not certain how that would help me filtering. I have a table with all the reps listed (separate from the assignments table). My issue is keeping the subform from filtering out the change as its made. I want to be able to filter a subform by rep number and then change them on the subform and...
  12. A

    Hold Filter on Subform

    The ex-employee is only listed in that subform(table), so if you removed him from that subform, he would be gone completely. If you removed the filter completely, it would show all territories under all managers and who is assigned to that territory. The current dataset only includes current...
  13. A

    DLookup between two tables

    Got it! Thank you!
  14. A

    Hold Filter on Subform

    That is correct, that ex-employee would not be linked to anyone.
  15. A

    Hold Filter on Subform

    Yes. Basically its taking out the ex-employee's number and replacing them with a new employee, which is under the same manager.
  16. A

    Hold Filter on Subform

    I've edited the filter to: strFilter = "[Rep Number] = " & Me.RepNumberField & "'" & _ " AND " & "[UserName] = '" & Me.UserNameField & "'" RepReassignmentSubform.Form.FilterOn = True The UserName field is based off the user's computer login. There are about 12...
  17. A

    Hold Filter on Subform

    I'm filtering from the main form. But I'm not sure how to go about doing this.
  18. A

    Email subform through outlook

    Thanks for your reply, but its a subform I want to attach in the body, not a textbox.
  19. A

    Hold Filter on Subform

    Thank you, but I'm not sure I follow... The filter is in a string (strFilter). How would I concatenate the filter to the saved values?
  20. A

    DLookup between two tables

    Hi all! I'm trying to do a lookup between two tables, whereas table A includes the product ID and table B includes the price. Is it possible to create a field in table A with a DLookup function on the product ID to get the product price from table B? Whenever I try to type in the DLookup...
Back
Top Bottom