08-01-2024 02:39 AM
Is there a calendar function available to display number of days in every month of a specified year
Solved! Go to Solution.
08-01-2024 01:04 PM
Not a single function, but you could use the following formula:
daysBetween(
	monthEndDate(
		dim_date_inc_s.date.Date
	), 
	monthStartDate(
		dim_date_inc_s.date.Date
	)
)