Ignition Report: Getting 1st day and last day of the month

First day of month:

getDate(
	getYear({date}),
	getMonth({date}),
	1
)

Last day of month:

addDays(
	getDate(
		getYear({date}),
		getMonth({date}) + 1,
		1
	),
	-1
)
14 Likes