Can someone please provide me with the code to display the current weeks worth of documents in a view?
Say today is the 30th November (which it is). I want my view to display all documents from Mon 26th to Fri 30th November. This weeks worth. The field to get this from is called CommitteeDate
I’ve tried using @Adjust and even the @Weekday within it, but am confusing myself.
Subject: RE: Displaying the current week worth of data in a view
Unless the database contains a very small number of documents, you generally don’t want to use @functions related to the current date or time (like @today, @now, etc) inside of view selection or column formulas.
The reason is that the view is rebuilt each time someone looks at it which causes a severe performance impact.
Could you categorize the view by work week instead?