Search results

  1. T

    Mysterious - The Value you entered isn't valid for this field - Error

    Thanks everyone for your input. I still can't determine what is wrong. See attached sample. This is very weird. Steps to reproduce error: 1.) Open frm_BillingReview 2.) Select Date of Service from the option group 3.) Select 1/3/2022 from the combo box 4.) Click the Get Data to Review button...
  2. T

    Mysterious - The Value you entered isn't valid for this field - Error

    Thanks for responding. The names of the fields are: Client_Name, Date_Of_Service.
  3. T

    Mysterious - The Value you entered isn't valid for this field - Error

    I know. This should be an easy one - except for the fact that my combo box is unbound. I have an option group that lets the user choose to search by name, date, therapy, payer etc. If they choose Name (or anything else) then the rowsource for the combo box is dynamically populated accordingly...
  4. T

    Report Footer Displays above Page Footer

    Sorry isladogs. I misinterpreted your post. You are correct.
  5. T

    Report Footer Displays above Page Footer

    How can I get the Report Footer to "precede" the Page Footer? I can't move it up in design mode.
  6. T

    Report Footer Displays above Page Footer

    I hope this isn't a dumb question but I have a report that consists of: Report Header Detail Page Footer Report Footer When I view or print the report the Report footer always displays before (above) the Page footer. Shouldn't the Report footer always be at the bottom? Can anyone please tell...
  7. T

    textbox.visible = false Not Working in Report

    Thanks Pat! Much appreciated! I will study these events!
  8. T

    textbox.visible = false Not Working in Report

    Thanks for the tip CJ_London!
  9. T

    textbox.visible = false Not Working in Report

    Thanks Pat! Works perfectly now!
  10. T

    textbox.visible = false Not Working in Report

    I have the following code in the On Print event of my report footer: Private Sub PageFooterSection_Print(Cancel As Integer, PrintCount As Integer) If Me.Page = 1 Then MsgBox Me.Page Me.[lbl_ClientName_Footer].Visible = False Me.[txt_ClientName_Footer].Visible = False Else...
  11. T

    Docomd.OpenReport Opens Wrong Report (Sometimes)

    MajP - I had to change your code to what's below. It seems to have solved my problem! Thanks to both of you for helping me out!!! If Application.CurrentProject.AllReports("N_Note").IsLoaded Then DoCmd.Close acReport, "N_Note" End If
  12. T

    Docomd.OpenReport Opens Wrong Report (Sometimes)

    I have a command button that, when clicked, opens a report. I feed it a unique Trans_Id so that it opens the report with the data that pertains to the form that the user is viewing. The first time I open the report and Trans_Id = 14 it opens the correct report. If I change the Trans_Id to 15 it...
  13. T

    There must be a more efficient way to do this

    Thank you sxschech and dbGuy for not being rude and presumptuous – and thank you to everyone else for responding to my post. If every moderator and generous contributor to this forum were to be assigned the same task we would all approach the task in our own unique way, utilizing our own unique...
  14. T

    There must be a more efficient way to do this

    Perfect! Thank you so much!!
  15. T

    There must be a more efficient way to do this

    DBguy - For some reason the datepart function doesn't recognize vbMonday. If it did I think this would solve my problem.
  16. T

    There must be a more efficient way to do this

    Plog - Thanks. I'll spend the next few months writing a treatise explaining the big picture so that, one day, you and I can have an abstract conversation about motives and methods of application development. Stay tuned!
  17. T

    There must be a more efficient way to do this

    No. If you can peak at my code it's very simple. I'm missing some logic somewhere. Didn't sleep well last night.
  18. T

    There must be a more efficient way to do this

    Thanks DBguy. Can you please elaborate?
  19. T

    There must be a more efficient way to do this

    See attached db. The Get_WeekNo() sub gives me the results I need - but there must be a more efficient way of accomplishing this that I just can't think of at the moment. I'm trying to update the TheWeekNo field to the proper week number. Each new week begins on a Monday. As I said the procedure...
  20. T

    Report opens behind Form

    Thank you so much!!!
Back
Top Bottom