Search results

  1. C

    outputto sum functions

    Yes, i think i understand. Thanks for the reply. I think I'll try it out today.
  2. C

    outputto sum functions

    I just found microsoft's answer...if anyone else has this problem check it out. Q253639 at http://search.support.microsoft.com/kb/c.asp I'm hoping someone can come up with a better solution than they did. It requires opening Access, Word, and Excel. Thanks Chad
  3. C

    outputto sum functions

    I hope this is not too confusing, but I'm trying to export a report to Excel, using the OutputTo action. In the help file is says that only text boxes in the detail section will be exported, which works fine. It also says that the only exception to this is that text boxes in group footers with...
  4. C

    Or Operator Question

    Thank you very much, that worked perfectly, I just didn't know to check a null with the Isnull function.
  5. C

    Or Operator Question

    I think this is an easy question that I'm just not getting, but here it is... I'm using the code: If (x=0 or x = "") or (y=0 or y="") then blah blah blah end if The or operator isnt' working how i expect. I want to evaluate if x is 0 or "", and if y is 0 or "", and if either x or y are 0 or...
  6. C

    Multiple Page Reports (not the same as Nhuhges)

    I am getting reports that should one be one page, printing duplicates for the number of records in the query the report is based on...(ie if the report is based on a query of orders...if there are 20 orders, the report will be 20 pages long). The thing i do not understand is that it's done...
  7. C

    visible property

    I know this can be done, just not sure of the syntax...I have a form for data entry, and I want certain text box fields to be visible depending on the selection in a drop down box. I have managed to get it to work, but it affects the visible property of that field(text box) for every record all...
  8. C

    parameter/variable criteria

    I'm having problems using a public variable in the query criteria. I believe I have to code this in SQL view, but not exactly sure of the syntax (something to do with parameters?). I have the variable declared as public in a module. Thanks
Back
Top Bottom