Recent content by Matt Greatorex

  1. Matt Greatorex

    Can you Query Using Multiple criteria from same field?

    Something along the following lines should do it. {Value of Field}: IIf(TaskId = 2, "Admin Time","Investigative Time")
  2. Matt Greatorex

    Running Query at Form CLose

    Nah, he's good. I just hang around and catch some of the adulation, as it washes off. :D
  3. Matt Greatorex

    Duplicate Record - Primary Key from Input Box

    You could add something like the following to the AfterUpdate event of the field the person is entering the number into. If DCount("name of field in table","name of table","name of field in table = " & [Forms]![name of form]![name of field]) > 0 Then Msgbox "That number already exists"...
  4. Matt Greatorex

    Running Query at Form CLose

    Have you tried DoCmd.SetWarnings False DoCmd.OpenQuery "qryDeleteEmptyCourses", acViewNormal DoCmd.SetWarnings True I think that should work.
  5. Matt Greatorex

    Export Variable Query Definition to Excel

    Additional Question I think this post is the closest to what I need, so I'm hoping someone can elaborate a little. I'm not not sure if this method is what I should actually be using. I have a number of saved queries. At present, the users view reports as snapshots, each one created based on...
  6. Matt Greatorex

    Obtaining SQL from a Query

    Perfect! I knew there'd be some easy way to accomplish it. Thanks a lot.
  7. Matt Greatorex

    Save record code

    I use something like this: If MsgBox("Do you want to save the changes?", vbYesNo) = vbNo Then Me.Undo Me.Close Else ‘Whatever code currently saves the data Me.Close End If I'm sure there are many other ways to do it...
  8. Matt Greatorex

    Obtaining SQL from a Query

    I have a number of reports that have as their datasources either a saved query (say, 'Query1') or an actual SQL statement (say, 'SELECT IDNumber FROM Table1 ORDER BY IDNumber;'). I want to create an Excel spreadsheet based on each report, but having applied one or more additional filters to the...
  9. Matt Greatorex

    'Sum' ignoring minus figures

    Thanks for the reply. Unfortunately, the grouping names are aren't differing. I end up with: Group A -$66.00 Group A $100.00 Group B $77.00 and so on. Anyone else with any suggestions? getting desperate here, folks. :(
  10. Matt Greatorex

    'Sum' ignoring minus figures

    I've been using the following query: SELECT [qry_1].Month, B_Division_Group.Grouping_Name, Sum([qry_1].Month_Client_Count_from_B) AS Monthly_Count, Sum([qry_1].Month_Assets_from_B) AS Monthly_Total, Sum([qry_1].YTD_Client_Count_from_B) AS Yearly_Count, Sum([qry_1].YTD_Assets_from_B) AS...
  11. Matt Greatorex

    Mysterious character change

    Unfortunately, this made no difference to the characters. Unless anyone has any other ideas, it looks as though I'm starting the report from scratch. :(
  12. Matt Greatorex

    Mysterious character change

    Please don't say it's the dreaded 'c' word! :D I've tried compact and repair, recreating one of the controls, and copying the whole report into another Db. I think iyou're right and mporting into a blank may be my only option. One question, do you know how I'd keep the various drop-down menus...
  13. Matt Greatorex

    Mysterious character change

    I have a report in which the right hand data comes from one query and the left is found from a second query. As of about an hour ago, I'd finally got the whoe thing working. Now, however, whenever I open the the report - preview or print - the left hand numbers are all displayed in Chinese (I...
  14. Matt Greatorex

    Query Map

    I think that's exactly what I'm looking for.:D Thanks a bunch - you've saved me a lot of query-by-query manual checking.
  15. Matt Greatorex

    Query Map

    Thanks for the response. If only it were that simple. Unfortunately, no relationships have been declared in this way.
Top Bottom