Recent content by ladydazy

  1. L

    more than just COUNT in query

    Hmmmm, evasive query this... I have tables: tblEmployeedetails,tblParttimeEmp, tblFulltimeEmp,tblEmployee and tblClubs ParttimeEmp and FulltimeEmp are subsets of tblEmployee and thus all have the same PK(empid). TblEmployee is linked to the tblEmployeedetails via the same PK(empid)...
  2. L

    SetFocus??

    Well well well. I cannot believe I forgot how to do this... :rolleyes: I have 2 forms. EmployeeId on the tblEmployee and EmployeeId on tblSection. I want when I enter data in frmEmployee, when I click NEXT (to go to frmSection), that EmployeeId be there in frmSection.EmployeeId automatically...
  3. L

    SQL error

    Do you have a " some where in that query?
  4. L

    SQL error

    WHERE ((tblAccum.RecDate) = [Forms]![frmMain]![Text17]) Shouldn't that query be WHERE ((tblAccum.RecDate) =[Forms]![frmMain].[Text17]) take out the last ! and see if that works. Me thinks you're trying to reference a combo box (Text17) in another form (frmMain)...so it should a . not a ! and...
  5. L

    Calculating using current date

    Hmm, I've been wondering and experimenting... :confused: How does one list all activities within the last month (and the month would be the current month, whenever the current month is) from a table such as: tblActivity activityid activityname startdate enddate I tried using the TODAY ()...
  6. L

    weird access duplicate tables

    Hey, thanks for the tip. :D
  7. L

    weird access duplicate tables

    For some reason, duplicate tables were created in the Relationships window on 2 tables that have a relationship between them. :confused: tblCampus tblSchool cam_id (PK) sch_id (PK) cam_name sch_name cam_id (FK) I used the Lookup Wizard to create a combo box...
Back
Top Bottom