Recent content by matrixsoul

  1. M

    filters on forms

    Hi there I’m still very new in Access, but after some search I got this i have the following - "Tasks" table, contain many fields the two what i use to filter is Category & Status - table named Categories contain one column contains all Categories - table named Status contain one column...
  2. M

    Drop list word Filtering

    Thanks a lot, actually i successes to make what i wanted in VBA code as follow Private Sub cboShowCat_AfterUpdate() If IsNull(Me.cboShowCat) Then Me.FilterOn = False Else Me.Filter = "Category = """ & Me.cboShowCat & """" Me.FilterOn = True End If End Sub...
  3. M

    Drop list word Filtering

    Hi Every one, i'm very new in access, i get shocked how deep is it, :) here is where i am i made a table to store a daily activities under 7 categories like food, transportation, etc. i made a split form where upper part has the form to make my input and lower form has all records as sheet...
Back
Top Bottom