I have a Start date column which I only want to show dates for the current year, not last years entries. The column is sorted by the previous column by Week
Subject: How to hide previous year in View column?
Three possible approaches:
1 View selection formula
Include something like DateField < “01/01/2004”. You will need to modify your view in January next year.
Additional Category column
Insert an additional category column to the left with the formula @Year( DateField ). This will force the 2003 entries to sort under a separate twistie to the 2004 entries
Run an agent which flags the documents to be excluded from the view.
Subject: RE: RE: How to hide previous year in View column?
You don’t have to hardcode the year, you can use something like @YEAR(@TODAY). A little drawback here is that the update symbol is displayed all the time when a function like @TODAY is used.