Search results

  1. C

    print time from text box value

    Is it possible to print a report that is based on a text box that is coded now()? CoachPhil
  2. C

    calling dates from text boxes

    Would this do it? .PatternStartDate = "#Text30#" .PatternEndDate = "#Text42#"
  3. C

    calling dates from text boxes

    Hi all, Answer is probably right in front of me but I have been looking at this so long I am brain dead! I am connecting to Outlook from my DB, setting a 'reminder date', I have the following code in the cmd button, Set objRecurPattern = .GetRecurrencePattern...
  4. C

    Calling Mutiple cbo's from form for report

    Gents, Worked like a charm, thanks to all. CoachPhil
  5. C

    Calling Mutiple cbo's from form for report

    Hi all, Not sure how to word this (part of the problem), I have a form with 3 comboboxes- 2 for dates and 1 for employee name. I need all three items to call the report correctly, a report on a specific employee for a specified time period. I am callimg from a query and all the info is...
  6. C

    Sum and Averages in Report

    Gemma, You are a genius, worked like a charm. Thanks for the refocus on the real issue. CoachPhil
  7. C

    Sum and Averages in Report

    Hi Troops, I have a Report, driven from a query that gives me employees, the number of transactions in a time period, and the number of seconds in total. I have summed and averaged the total transactions-no problem. The total seconds I was able to convert to hh:nn:ss. But.............. I...
  8. C

    calling multiple fields from a query

    Bob, after the changes, the report calls all info from the query, not just the specific employee- I get a 5000 page report. Any ideas to narrow the search to employee specific records? CoachPhil
  9. C

    calling multiple fields from a query

    boblarsen-you are my hero, I will try this on my program and give you an update tomorrow CoachPhil
  10. C

    calling multiple fields from a query

    Hi All I have a report where I am trying to pull an employee and all related info in a query between selected dates. I am using one combobox for the name, a second for the start date and a third for the end date, SURPRISE---I can't make it work. What would be the best way to proceed? CoachPhil
  11. C

    Error message

    as always, you are on the mark, thank you George
  12. C

    Error message

    I have a Division by Zero error when I run a report. I believe I have traced it back to a query, an expression in the query ‘ACHT: Nz(AgentDataByMonth!t_logged_in/AgentDataByMonth!n_incoming,0)’ returns an 'Error' on lines where there are zeroes in the calculation. Am I on the right track...
  13. C

    ‘Out of Stack Space’

    Gemma, Turns out that I had a bang in my code, thank you CoachPhil
  14. C

    ‘Out of Stack Space’

    I am getting the error message ‘Out of Stack Space’ when I run one of several reports from my DB, but only on one report. Any ideas why? CoachPhil
  15. C

    Function in Report

    Paul, Its a TimeConvert() function and I am using the same query and parameters as the other three reports? I will verify what is passing, thank you CoachPhil
  16. C

    Function in Report

    Ladies and Gentlemen, Is there a legitimate reason why a function in a module would work in three reports on a db app, but not a fourth on the same db? CoachPhil
  17. C

    Percentage in a Report

    Thanks Gents, I got one and am working on the others. CoachPhil(football)
  18. C

    Percentage in a Report

    I am trying to relate a calulated amount in a report as a percentage. How possible is this from a text box in a report? CoachPhil
  19. C

    Frustrated beyond belief with Time conversion

    raskew and namliam, you were both right, raskew your additional line of code; 'Here is an alternative method, which would display 1530 minutes as 01:01:30 'Format([Minutes]\(60*24),"00") & ":" & Format(([Minutes]\60) Mod 24,"00") & ":" & Format([Minutes] Mod 60,"00") and namliam, you were...
  20. C

    Frustrated beyond belief with Time conversion

    Namliam, You are the man! works perfectly, thank you CoachPhil
Back
Top Bottom