Recent content by victorlindh

  1. V

    Solved Function to calculate your start and end dates for the current day

    I will appreciate if you added input on time element.
  2. V

    Solved Function to calculate your start and end dates for the current day

    SELECT *, Now() >= StartDate And Now() < EndDate AS Active FROM YourTable
  3. V

    Solved Function to calculate your start and end dates for the current day

    SELECT *, Now() >= StartDate And Now() < EndDate AS Active FROM YourTable Criteria Active = True
  4. V

    Solved Function to calculate your start and end dates for the current day

    I have found the solution. Thanks everyone. God bless you so much.
  5. V

    Solved Function to calculate your start and end dates for the current day

    Thanks. I have encountered a slight problem. I am trying to filter using your expressions WHERE >=DateValue(Now()) AND <=DateAdd("s",-1,DateAdd("d",1,[StartOfDay]))
  6. V

    Solved Function to calculate your start and end dates for the current day

    I want to use in a query. Apparently it is not working. Thanks in advance.
  7. V

    Solved Function to calculate your start and end dates for the current day

    How do I apply this code? StartDate: GetCurrentDayDates()(0) EndDate: GetCurrentDayDates()(1)
  8. V

    Solved Function to calculate your start and end dates for the current day

    How do I call this function to calculate your start and end dates for the current day. Kindly look at the attached database
  9. V

    Hide inactive data and show active data only.

    I am defeated. Kindly please assist me.
  10. V

    Hide inactive data and show active data only.

    Hi. If i may ask what is Maschere?
  11. V

    Hide inactive data and show active data only.

    Thanks for this. Working on it now💪💪💪💪
  12. V

    Hide inactive data and show active data only.

    Kindly please assist me with an example. This is the best approach. Thanks in advance.
  13. V

    Hide inactive data and show active data only.

    Hi everyone. I am making school database. I am defeated on how to show only active data. For example we have 3 terms in a year. I want to hide data for previous years for example in 2025 term 3 to be shown and hide for previous years and terms. I wish when the form(FORM4) is opened, the user...
Top Bottom