Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: 03SCBeast
  • Content: Threads
  • Order by date
  1. 03SCBeast

    Modify Query that tracks Quaterly Reports

    Background: I've designed a query that tracks due dates for quarterly reports based on the anniversary date. I've used PHV's code to ensure the anniversary date is relative to the time the person is entered into the system and it all works perfectly. Problem: I need to modify query so that...
  2. 03SCBeast

    How do I show/hide subform based using checkbox on mainform

    MainForm = Me SubForm = frmFCPSYCHMEDS Checkbox = FC_PsychMeds This code below works fine for showing/hiding the subform based on whether cbxFC_PsychMeds is checked. The problem is when I check cbxFC_PsychMeds for one record, it makes the SubForm appear for all records rather than the related...
  3. 03SCBeast

    How do I use calculated value from form in query?

    tbxFirstAidStatus located on frmManagers (underlying tblManagers). Ideally, I would like to bound the textbox above to a field so I could use it in reports in queries. Is there a way to do this even though the control source is a calculated value. I can do the above with no problem if I do a...
  4. 03SCBeast

    How Do I Prevent Overlapping Dates?

    I'm trying to write code to prevent overlapping periods a manager is assigned to a project. Here's the code: If Me!EndDate <= Forms!frmManager!EndDate And _ Me!EndDate >= Forms!frmManager!StartDate Then _ MsgBox "The start date is included in a previous manager's period."...
  5. 03SCBeast

    How do I set new start date to previous end date?

    I have a qry question with 3 parts. Fields: [manager], [start], and [end]. 1st part: I want to be able to enter initial start date if this will be the first manager on this particular project. 2nd part: If more than 1 manager has been assigned to a project, I'd like for the new manager's start...
  6. 03SCBeast

    Query calculation in underlying table

    Help, "tblMYTABLE fields" [Person], [to], [from], [#days] "qryMTTABLE fields" [Person], [to], [from],#days: DateDiff("d",[FROM],[TO]) I have qryMYTABLE based on tblMYTABLE. My main reason for doing a query is I needed to calculate the # of days a person was assigned to project and I don't...
  7. 03SCBeast

    Macro to assign ID Numbers

    I'm trying to replicate the mcrContract macro in the Entertainment "Running Microsoft Access 2000" by John Viescas to assign IDs to new persons without skipping and numbers. I believe I have the conditions and actions set up correctly but I can't figure out how to have the Form start macro. I'd...
  8. 03SCBeast

    Setting up Quarterly Report Tracking Logs

    I’m trying to set up a query that automatically tracks due dates for 30 day, QR 1, QR 2, QR 3, and QR 4 reports based on the anniversary date. The anniversary date is calculated from the mm/dd of the effective date and the current “yyyy”. So far, I used the code below is as follows: Code...
  9. 03SCBeast

    How do I use check box value in expression?

    My Code: REPORT STATUS: IIf(DateDiff("d",Now(),[Report Status])>7,"Current",IIf(DateDiff("d",Now(),[Report Status]) Between 0 And 7,"Due",IIf(DateDiff("d",Now(),[Report Status])<0,"Overdue"))) This code works well in setting field value at "Current" if report is not due for 8 or more days...

Part and Inventory Search

Back
Top