Recent content by Zaxxon

  1. Z

    Criteria Current Month

    Just had some trouble entering the new year, so in case anyone had the same problem I'll post my fix: For year, I used to have Year(Date()) which wouldn't work work because in January, I was looking for stats from December 2008, not December 2009. I put this in the criteria...
  2. Z

    please help: display field with no data in pivotchart

    I'm also looking for an answer to this problem...
  3. Z

    Criteria Current Month

    The WHERE statement worked great. Thanks for your quick response. I'll check that website out too, looks like a good resource.
  4. Z

    Criteria Current Month

    Hi I have number of queries and I want them too all return data based from the current month. At the moment in the query I have [Date] Where Criteria Between #01/10/2008# And #31/10/2008# Obviously I don't want to have to change it every month. Is there a way to make it select the current...
  5. Z

    Running macro in subform returns error

    Ah I think you got it. The main form shows data from Table1 and the subform shows data from Table2. The macro refers to [DateModified] which is a field in Table1. I just assumed it would be ok since the tables were linked. I'll try changing it when I get back to work and post an update. Also, I...
  6. Z

    Running macro in subform returns error

    I have a form and displayed in it is a subform. I created a macro to put a datestamp on any record that is changed. It works fine for records edited using the main form. When I try to run the same macro in the subform I get error 2950; ActionName: SetValue, Arguments: [Date Modified], Date()...
  7. Z

    Run VB and Macro Event in BeforeUpdate

    Excellent that's what I was looking for, thanks!
  8. Z

    Run VB and Macro Event in BeforeUpdate

    Hi I have two things I want to run in my BeforeUpdate of a form. First, I want to have a TimeStamp macro to run. Second, I want an Event Procedure that asks the user whether or not they want to save. I can't seem to have both. I select one in the property sheet under Before Update the other one...
  9. Z

    Two Tables in Query Results in Wrong Count of Records

    Hi, I'm trying to create a query to count the number of records based on information stored in different tables. For instance, one table tracks general complaints, another support complaints and a third product complaints. I want a query that would count the number of each. When I try to do...
  10. Z

    Combobox Find A Record Based on Value Selected

    Hmm ya I tried copying it but no luck. When I change the number in the combobox nothing below changes. When I use a subform the combobox works perfectly. The only reason I would rather not use a subform though is for looks and ease of use. The subform looks a little more confusing and takes up...
  11. Z

    Combobox Find A Record Based on Value Selected

    Hi I just started working with multiple tables and relationships (woo big step), but I'm having trouble with recalling records now. I have a form for editing records. There's a combobox on the form that lets the user picks the record they want to edit and it brings up all its related...
  12. Z

    Update Value in ComboBox After Record Changes

    So when I use the code Me![CboGoTo] = Me![Request number], the combobox shows the [ID] number of the record instead of showing the [Request number]
  13. Z

    Update Value in ComboBox After Record Changes

    Request_number is a field that contains the number/letter (i.e. 33, 34, 34b, 35) that the user is going to search by. The numbers are unique, but it's not the primary key. I have an ID autonumbering column for the PK. I made the combobox using the wizard and picked the "Find a record on my form...
  14. Z

    Update Value in ComboBox After Record Changes

    It's acting kind of strange now. I have about 800 records. When I go for instance to record 500 in the combobox, it displays the information for that record, but the combobox number show 419 instead. When I click "Save and Next" it shows 501, but shows 420 in the combobox... Here's what I put...
  15. Z

    Update Value in ComboBox After Record Changes

    Hi, I have a combobox which I made using the third option of the combobox wizard. The user can select an ID number and it brings up the record information below. I also have a save & next button, so when the user edits information they can click it and have the next record appear. This works...
Back
Top Bottom