Search results

  1. M

    Query to show grade,GPA and comment at once.

    the working SOLUTION. SELECT SM.Student_ID, SM.Students, SM.class, SM.Maths, SM.English, SM.Science, (SELECT GD.Grade FROM tblGrades AS GD WHERE GD.MinMarks = ( SELECT TOP 1 GD.MinMarks FROM tblGrades AS GD WHERE GD.MinMarks <= SM.TotalAverage ORDER BY GD.MinMarks...
  2. M

    Query to show grade,GPA and comment at once.

    Hallo! i have the following database with: -tblGrades-contains: gradeID,Grade,MaxGrade,MinGrade,GPA and comment -tblStudents_marks:StudentId,name and marks in various subjects -qryResults: calculates totals and average in all subjects -qryGrades: Grades the students as per marks and also the...
  3. M

    hallo!! great news, i have found a simple solution. I used a Query: SQL statement: SELECT...

    hallo!! great news, i have found a simple solution. I used a Query: SQL statement: SELECT SM.Student_ID, SM.Students, SM.Marks, GD.Grade FROM tblStudentMarks AS SM INNER JOIN tblGradeDenormalized AS GD ON (SM.Marks>=GD.MinMarks) AND (SM.Marks<=GD.MaxMarks); get database here...
  4. M

    Edit conditional statements in vba via form.

    Found solution. using the following simple SQL Statement in a Query. No VBA. SELECT SM.Student_ID, SM.Students, SM.Marks, GD.Grade FROM tblStudentMarks AS SM, tblGradeDenormalized AS GD; i have attached database for any one who might need it.:cool:
  5. M

    thank you once again. i also posted this question in another forum and someone suggested...

    thank you once again. i also posted this question in another forum and someone suggested something to do with DLookup() and a non-equi join.....am trying to see if it will work for me. the thread is here: http://www.accessforums.net/access/customize-function-form-37552.html#post187865
  6. M

    thank you very much madefemere, i have called the function in a query and it works fine. am...

    thank you very much madefemere, i have called the function in a query and it works fine. am sorry to bother you too much but i am new to vba,i was wondering how i will make this function available for the user in a form, so that they can edit it. you see different institutions might have variant...
  7. M

    Edit conditional statements in vba via form.

    it seems to be confusing more and more. just forget it, thanks anyway.
  8. M

    Edit conditional statements in vba via form.

    i hope this helps you get what i mean.
  9. M

    Edit conditional statements in vba via form.

    i did that but it gives wrong results, instead of using the table (comments) to determine the correct results it gives results of the comments table instead. in the query i used the following formula. Note: Marks- is the students marks. (tbl Marks) Marks1-marks to be compared to. (tbl Comments)...
  10. M

    okey, let me make it as simple as possible. this is what i want to achieve. I have a table of...

    okey, let me make it as simple as possible. this is what i want to achieve. I have a table of marks of student, a query that calculates totals and a form that displays results. on the query, i have an if statement. comment:IIf([Marks]>=80,"good",IIf([Marks]>=50,"fair",IIf([Marks]>=40,"Work...
  11. M

    Edit conditional statements in vba via form.

    this is what i want to achieve. I have a table of marks of student, a query that calculates totals and a form that displays results. on the query, i have an if statement. comment:IIf([Marks]>=80,"good",IIf([Marks]>=50,"fair",IIf([Marks]>=40,"Work harder"))) So i want to be able to make the...
  12. M

    Hallo, please help me solve this headake. can it be possible to customize an if function...

    Hallo, please help me solve this headake. can it be possible to customize an if function?? syntax. iif ( condition, value_if_true, value_if_false ) i mean enable the user to change condition, value_if_true, value_if_false in a form. thanks in advance.
  13. M

    Run update query from a form

    was looking for this. Thanks. John Big Booty. in a query, i have a field "Grade:" it grades according to the below criteria. i want user to edit the constant marks in a form i.e 80,70,65,60,55,.... can this be possible? Grade...
  14. M

    Question Cant rank according to filter in query

    :eek: :o:) madefemere, SIR! U HAVE SAVED MY LIFE! EXACTLY WHAT I WANTED WITH A SUPER BONUS! Almighty Bless You.
  15. M

    Question Cant rank according to filter in query

    okey thank you very much madefemere :cool:, that solves part of the problem. However,I would like the user to insert random variables...more like a parameter query on the criteria..like the user could put >50, <=29...etc BUT still maintain the Rank and based on the new filter...
  16. M

    Question Cant rank according to filter in query

    thanks but please see the attached database to get exactly what i mean. open the query and on the criteria of marks wright <50 you will see the rank of the students still continues with 7 8 9 instead of 1 2 3 based on the new criteria.
  17. M

    Question Cant rank according to filter in query

    hallo! would really appreciate your help here, so i have created a table called "tblStudents" with studentId,Name and marks as the fields in it. i have also created a query to rank the students according to there marks obtained. The query works fine with a Ranked output 1 2 3 4 5....etc BUT...
  18. M

    Question Can you intergrate Finger print reading in Access Apps?

    Building a voters registration/voting system, needed to know if i could use a fingerprint device to capture data.:rolleyes::confused:
  19. M

    MS Access Database integration with SMS Messages

    hi Prabhu79! i would refer you here: :o http://accesstips.datamanagementsolutions.biz/ftp_sms.htm
  20. M

    Question Which SQL Server version to choose when upsizing Ms-Access 2010 apps.

    Thanks pat for the detailed info, i think now i have understood. Anyway, I don't want to include the SQL Server back-end database as part of the install package, but then how do i package the back-end? Lets say i have a school management app and i want to distribute it/ make it available...
Back
Top Bottom