How to view first 7 days data of each month in dashboard
You can achieve the requirement of viewing the first 7 days of each month on the dashboard by using this expression field.
Please follow the provided steps to meet this requirement.
-
After creating the necessary data source, you must create an expression column that corresponds with the date column.
Syntax: IF(DAY([DateColumn) >= 1 AND DAY([DateColumn]) <= 7 , [DateColumn], null)
-
Now you can bind this expression column to the required widget, and it will return the actual value for the first 7 days of a month and a Null value for all other days of the month.
-
You can bind the same expression column in the
Filters
section of a widget to exclude theNull
value.
-
Open the
Filter(s)
pop-up window through the provided option and uncheck theNull
value from the list as shown in the screenshot.
Now, the widget will display the available data for the first seven days of each month, as shown in the screenshot.