Search results

  1. A

    Straight time and overtime question

    Thanks for you help.
  2. A

    Straight time and overtime question

    If an employee has the following. .5-hour lunch 45.16-hours Worked hours minus lunch=44.66 StraightTime should be 40 OverTime should be 4.66
  3. A

    Straight time and overtime question

    Hello, I would like to calculate straight time and overtime in a query. The names of the fields are “Hours” and “LunchAndUnPaidTimeOff”. Any ideas how I can show if a person has worked 40 hours or under and how many overtime hours after the 40 worked hours?
  4. A

    Export to PDF Question

    Perfect it worked!! Thank you!
  5. A

    Export to PDF Question

    It is an existing folder. The file just needs to be sent to that existing folder.
  6. A

    Export to PDF Question

    The file path is below. C:\Users\hmartinez\Desktop\Katie Weekly Sent Invoices
  7. A

    Export to PDF Question

    I is creating a folder inside the folder that already exists. I want it to just send the file to the existing folder on my desktop.
  8. A

    Export to PDF Question

    Below is VBA I have used to create a folder, convert the file into PDF and name it. I would like to know what lines I need to remove to not create the floder, because I want to send it to a folder that already exists. Private Sub SendToKatieFolder_Click() Call...
  9. A

    Text Box Doesn’t Disappear When Creating PDF

    Perfect! It Worked! Many Many Thanks!
  10. A

    Text Box Doesn’t Disappear When Creating PDF

    Hello, I make it disappear with code when there is no data. When I open the report in normal view it works properly, however the code I listed above doesn’t open the report. It just converts it to a PDF and sends it to a folder.
  11. A

    Text Box Doesn’t Disappear When Creating PDF

    I now have a text box that disappears on normal view of the report. However the code below converts the report to a PDF. When I review the PDF the text box is there. Any ideas? Public Sub ExportPDFINVOICE(strRoot As String, strPropertyAddress As String, strprojectnumber As String...
  12. A

    Hide Text Box On A Report

    Prefect thank you!
  13. A

    Print 2 copies from non default printer

    The code below is still only printing 1 copy to the default printer. Any ideas? DoCmd.OpenReport "rptworkauth", acViewDesign, Null, Null, acHidden Dim oRpt As Report Set oRpt = Reports(0) oRpt.Printer = Application.Printers("Savin C3333 PCL Color") With oRpt.Printer .Copies = 2...
  14. A

    Hide Text Box On A Report

    I have already set it to shrink. I need to have the label (BillingWeeksLable) show when there is data.
  15. A

    Hide Text Box On A Report

    Hello, How do I hide a single text box on a report if there is no data? The label is called “LableBillingWeeks” and the control source is called “BillingWeeks”. Any thoughts?
  16. A

    Combo Box Spelling Error

    Hello Friends, I have a form that contains to fields that are combo boxes. I would like to spell check the fields when text is entered that is not on the set list. However I’m am getting the error below. The current selection does not contain any fields that can be checked for spelling errors. I...
  17. A

    Past Due Invoices by payment terms

    Its fixed! Thank you very much for your help!
  18. A

    Past Due Invoices by payment terms

    how about if I enter the payment terms? Does this make more sense? PaymentStatustest: IIf([tbl report and invoices sending]![payment terms]="Due Upon Receipt","Due Upon Receipt Past Due", IIf(Date()-[invoice date sent]>=365,"365 Days Past Due", IIf(Date()-[invoice date sent]>=180,"180 Days...
  19. A

    Past Due Invoices by payment terms

    Hello, The query I have below. Is returning records with the Payment Terms for NET 30 are showing as “15-30 Days Past Due”. The NET 30 payment terms should show as “31-60 Days Past Due” and the NET 15 payment terms should show as “15-30 Days Past Due”. I hope I’m explaining myself? Any ideas...
  20. A

    2 ++ Question

    It Worked perfectly! Thank you!
Back
Top Bottom