Search results

  1. SHANEMAC51

    Query Training

  2. SHANEMAC51

    Solved FILTER BY FORM

    and sometimes it is necessary to check the search conditions for an additional 1- the presence of apostrophes or quotation marks in the field 2-what is contained in the substitution field (code or value) 3- for date - mm/dd/yyyy format 4- an interval of dates or prices/costs is possible and both...
  3. SHANEMAC51

    Solved FILTER BY FORM

    I often use the code from No. 5, but even more often the following, especially if you need to select not all 4 search fields, but 1-3 fields or part of the value, for example from A+, A, A-, B+, B, B-..... select all B or all D dim f1,f2 f1 = "" f2=f_Years & "" if len(f2)>0 then f1 = f1 & " and...
  4. SHANEMAC51

    Solved FILTER BY FORM

    Data entry setup (fixed the main form, filter), 3 subordinate ribbon forms for navigating classes/semesters/topics I didn't look at the results, PINK FIELDS are NEEDED, they provide navigation through forms
  5. SHANEMAC51

    List Box Help

    when I need to see several fields when selecting (often long ones), I use a dialog form instead of a list with the ability to select by any field, including by partial value and a combination of several fields
  6. SHANEMAC51

    Solved FILTER BY FORM

    Student ID Last Name First Name Gender NAME OF THE SCHOOL KCPE Grade Year ID Grade ID Stream ID Term ID Exami nation ID Subject ID Mark SubjectAbr Description 2 CHEP KOECH MILLI CENT FEMALE MARUM BASI SECON DARY SCHOOL 430 1 1 1 1 2 14 50 AGRI Agriculture 2 -/- -/- -/- -/- 430 4 2 2 2 2 6 60...
  7. SHANEMAC51

    Solved FILTER BY FORM

  8. SHANEMAC51

    A little help with If, Else and Exit sub

    Private Sub btn_StopOrdre_Click() Dim intanswer As Integer If len(cbm_Medarbejder & "")=0 Then intanswer = MsgBox("Husk at vælge medarbejder fra dropdown listen", 64, "Vælg medarbejder") Forms!frm_ctn_list!cbm_Medarbejder.SetFocus Exit Sub End If If len(DCount("No_"...
  9. SHANEMAC51

    A little help with If, Else and Exit sub

    [КОД] Частная субмарина btn_StopOrdre_Click() Dim intanswer As Integer Если len(cbm_Medarbejder & "")=0 То '''''''''''' intanswer = MsgBox("Husk at vælge medarbejder fra dropdown listen", 64, "Vælg medarbejder") Формы!frm_ctn_list!cbm_Medarbejder.SetФокус Выход из sub Закончить, если...
  10. SHANEMAC51

    Solved FILTER BY FORM

    you have 12 tables, but only 4 of them (Figure 2) are important for the scheme , two tables (for GENDER and school) are embedded in the table, students marked the numeric fields in green, which are formatted without quotes in the filter , orange are text fields, in quotes substitutions usually...
  11. SHANEMAC51

    Solved FILTER BY FORM

    I am unlikely to be able to help you - I do not know English, my messages are translated by Google, you need to either study some textbook yourself or look for an English-speaking consultant
  12. SHANEMAC51

    Solved FILTER BY FORM

    you need to read about the productions and do them the same way in the tables and the format now they are different for you, therefore it is chosen incorrectly in one student * obvious lies) and it is unlikely to form correctly for all students (although it works)
  13. SHANEMAC51

    Solved FILTER BY FORM

    and of course read about the complex filter filter ="year=2020 and school='school 1' and city='boston'"
  14. SHANEMAC51

    Solved FILTER BY FORM

    decide on the statements, they are different in your tables and forms (and even for the same table).... this is the reason for your mistakes
  15. SHANEMAC51

    Solved FILTER BY FORM

    compare filter strings 1, works for all 2 does not work for one student (incorrect syntax)
  16. SHANEMAC51

    A little help with If, Else and Exit sub

    Private Sub btn_StopOrdre_Click() Dim intanswer As Integer Dim inCnt As Integer If IsNull(Forms!frm_ctn_List!cbm_Medarbejder) Then intanswer = MsgBox("Husk... Vælg medarbejder fra dropdown list", vbOKOnly) Forms!frm_ctn_List!cbm_Medarbejder.SetFocus exit sub Else...
  17. SHANEMAC51

    Solved FILTER BY FORM

    you are forming the filter string incorrectly Filter = "Years = " & Years Filter = Filter & " and Grade Desc = '" & GradeDesc & "'" Filter = Filter & " and TERM ='" & TERM & "'" Filter = Filter & " and ExaminationType = '" & ExaminationType & "'" MsgBox Filter DoCmd.OpenReport "REPORT FORMS"...
  18. SHANEMAC51

    I know Evgeny from Russian forums, I'm also a moderator on one of them

    I know Evgeny from Russian forums, I'm also a moderator on one of them
  19. SHANEMAC51

    fixed report with number of row in report details

    extra characters in the added lines are temporary, for clarity when debugging
  20. SHANEMAC51

    fixed report with number of row in report details

    I was interested in the option with several groups of records, for example, in the context of customer groups, and the name field - expandable almost turned out - only the extra last sheet
Back
Top Bottom