Search results

  1. T

    Trouble pulling Name instead of associated ID number

    I tried pulling the refInstitution table into the query but it just makes the query not display any information. Not sure what I am doing wrong. I have included a graphic of the query.
  2. T

    Trouble pulling Name instead of associated ID number

    I have three tables the tblStudentInfo (holding the persons main data), the tblEducation (holding the students education records) and the refInstution (holding all university's and college information) I am pulling PersonID, name, etc from the tblStudentInfo, education records from...
  3. T

    Subform displays numbers

    I have a main form and a subform. The main form displays the information as combo box = column.2 (in other words it shows the actual word not recordid y/n checkbox = obviously shows which is checked however the subform shows combobox = 1 or 2 etc the recordid y/n check box 1 for...
  4. T

    sum units via query

    FIXED! here is the solution SELECT Sum(tblCourseTaken.Units) AS TotalCredits, tblCourseTaken.[790ID], tblCourseTaken.CourseStatus FROM tblCourseTaken WHERE (((tblCourseTaken.CourseTypeID)=1 Or (tblCourseTaken.CourseTypeID)=2)) GROUP BY tblCourseTaken.[790ID], tblCourseTaken.CourseStatus HAVING...
  5. T

    Attempting to get total

    FIXED: here is the solution SELECT Sum(tblCourseTaken.Units) AS TotalCredits, tblCourseTaken.[790ID], tblCourseTaken.CourseStatus FROM tblCourseTaken WHERE (((tblCourseTaken.CourseTypeID)=1 Or (tblCourseTaken.CourseTypeID)=2)) GROUP BY tblCourseTaken.[790ID], tblCourseTaken.CourseStatus HAVING...
  6. T

    Attempting to get total

    the fields being used are: Course Type 1=Core, 2=Elective, 3=Non-degree and 4=Transferred Course Status completed, withdrew, incomplete Fields in use by query: UnitCoreTotal, UnitElectiveTotal, and UnitTotal Unit Core works with: SELECT Sum(tblCourseTaken.Units) AS...
  7. T

    sum units via query

    Bob, Hoping you can help me with this small glich. I have added another type of course "Non-Degree" with a designation of 4. The problem arises only in the Total Unit query. Since I have put this in as "completed" it adds the course to the total. SELECT Sum(tblCourseTaken.Units) AS...
  8. T

    sum units via query

    Thanks. Due to a lot of hard work, research to find best methods and how to implement them, and definitely a lot of help from the terrific people on here.
  9. T

    sum units via query

    Thank you so much. I even had that down to try in my notes and just missed it, thinking that would not make so much difference. Ah well, still learning. Again I can't thank you enough for all the help you and everyone on here has given me.
  10. T

    sum units via query

    Ok I have pared down the database to just the relevant main (basic) and relevant form (Course). If you will notice that when I set the query for "Required - Completed" it give and #Error in the requiredunit and totalunit field. But if i entered say "Core-CoreCompleted" i get a the...
  11. T

    sum units via query

    I need to separate the units into type and then program total. this will allow me to know which type of course is missing at a glance. I have four unbound field ReqUnit, CoreUnit, ContentUnit, TotalUnit for query input. Drawing from these field. Field 1 = cboCourseType (Required, Core...
  12. T

    VBA into SQL

    I DID IT!!! Thanks to everyone for their help. Solution: Create a query based off the fields in the table of the form you want the subform to display. Be sure to include on both the main form and in the query: 1. The autonumber in the table (RecordID) 2. The information to limit what...
  13. T

    weird behavior of subform that is used as a record selector

    I DID IT!!! Thanks to everyone for their help. Solution: Create a query based off the fields in the table of the form you want the subform to display. Be sure to include on both the main form and in the query: 1. The autonumber in the table (RecordID) 2. The information to limit what...
  14. T

    How do you synchronize form / subform

    I DID IT!!! Thanks to everyone for their help. Solution: Create a query based off the fields in the table of the form you want the subform to display. Be sure to include on both the main form and in the query: 1. The autonumber in the table (RecordID) 2. The information to limit what...
  15. T

    How do you synchronize form / subform

    Unfortunatly the boss want both views together (doesn't care how tho) hence trying the list box that i could not get to work as it displays every record (see above). Would making the datasheet view the main form and the entry view the sub form work with what I need to accomplish?
  16. T

    How do you synchronize form / subform

    I know that I should use a List Box, but I can not get that to work either, it displays all course records not just the ones for a particular student. I do not care which way it is just as long as I can get it to work that selection in the MANY (either sub or list) opens the record in the ONE...
  17. T

    How do you synchronize form / subform

    That is exactly what I am trying to do. (Using Access 2010). I want to use the cascading combo's to reduce potential errors but need to display all associated records (which I did get it to do) and yet be able to select a record in the subform and have it load to the main form (which I can...
  18. T

    How do you synchronize form / subform

    OK if you open the database and select the Course Work button it takes you to the form / subform. The main form (frmCourseTaken) is where the student course records are entered, stored in tblCourseTaken. The subform (frmsubCourseSummary) is built off a query (qryCourseSumary) that pulls...
  19. T

    Synchronize the subform to the main form

    Attached is a pared down version of my database to the form causing the problems. Open the database and select Course Work. I have a form that uses a subform. I need to be able to synchronie the two so a selection in the subform loads that record to the main form for editing. As I am...
  20. T

    VBA into SQL

    I can not get it to work. It lets me select different choices but continues to record the same record instead of letting me choose multiple records for the same person. I am going to put a shortened version of the database (with only the form giving me trouble) on here and hope someone can...
Back
Top Bottom