Recent content by capogna1

  1. capogna1

    Parameter query

    Thanks Much!!!
  2. capogna1

    Parameter query

  3. capogna1

    Parameter query

    How do I include output column to my query? I'm trying to have the Between Dates from "Q_Completed_By_Date1" added to my report "R_CompletedByDate" so the report shows the dates entered in criteria parameter.
  4. capogna1

    Parameter query

    Hi everyone! So my query looks up between dates, I enter "Start date" and "End date" and this works. I would like those 2 dates to come up on my report that look at this query. I might be real simple to do but been trying and can't get it. Thanks in advance!!!
  5. capogna1

    Filter on a form

    TY I got to figure out where I messed up at. I name your file GASMAN!!!
  6. capogna1

    Filter on a form

    I can't get this right. it's not working for me.:unsure:
  7. capogna1

    Filter on a form

    You are amazing man. Thank You so much! Let me try it...
  8. capogna1

    Filter on a form

    Form_test I need to filter by Reviewer and by type of encounter, you can use Q_incomplete as source too
  9. capogna1

    Filter on a form

  10. capogna1

    Filter on a form

    Sub RequeryForm() Dim strSQL As String strSQL = "" If Len("" & Me!cboTypeOfEncounter) > 0 Then strSQL = "[Type Of Encounter] = '" & Me!cboTypeOfEncounter & "'" End If If Len("" & Me!cboReviewer) > 0 Then If Len(strSQL) > 0 Then strSQL = strSQL & "And" End If strSQL = strSQL...
  11. capogna1

    Filter on a form

    This is what I get:
  12. capogna1

    Filter on a form

    I get this
  13. capogna1

    Filter on a form

    I Ctrl + G put my cursor in immediate window then F5
  14. capogna1

    Filter on a form

    Not getting nothing from Debug.Print
  15. capogna1

    Filter on a form

    If I do Debug.print it ask to choose a macro
Top Bottom