You need to sign in to do that
Don't have an account?

What is the formula of getting Current month first date and current month last date ?
What is the formula of getting Current month first date and current month last date ?
function readOnly(count){ }
You need to sign in to do that
Don't have an account?
Hi Manjeet,
Find the below Solution
First day of the current month:
DATE(YEAR(TODAY()), MONTH(TODAY()),1)
Last day of the current month:
DATE(YEAR(TODAY()),MONTH(TODAY()) + 1,1) - 1
If you find this helpful mark it as the best answer.
All Answers
For the first day of the current month:
For the last day of the current month:
Hope above information was helpful.
Please mark as Best Answer so that it can help others in the future.
Thanks,
Hi Manjeet,
Find the below Solution
First day of the current month:
DATE(YEAR(TODAY()), MONTH(TODAY()),1)
Last day of the current month:
DATE(YEAR(TODAY()),MONTH(TODAY()) + 1,1) - 1
If you find this helpful mark it as the best answer.
should be return 1(Ex : Apr) and 2nd Month(May) sould return 2 value