Is it possible to create a view using the getWeekOfYear() function to display records belonging to that specific week?

ThegetWeekOfYear() function can be used to view records whose date field belongs to the current week. To do this,

1. Create a Formula field in your form with the following expression as given below, where Date_1 is the name of the date field in your form. You can also use the Added_Time field instead of your Date field, based on your requirement. The formula expression will return the week number in the Formula field. 

Date_1.getWeekOfYear()

2. Specify the Advanced View criteria as given below, where Formula_1 is the name of the formula field added above.This will list all the records belonging to the current week.

Formula_1 == zoho.currentdate.getWeekOfYear()

 

Related Links

Deluge Reference ->Built-in Functions
Deluge Reference ->Operators