I’m need to get the first and last day of the month, I’m able to get the last day using: EndOfMonth() and I thought it would be easy getting the first day using endofmonth().count()+1.
Here’s my formula: [Date] is a date formatted cell
endOfMonth(Date, -1).Count()+1
But the result I get is: 02/01/1900 which is nowhere near the date I need.
@Juanmata
You can use the results in the formula builder to see what is going on here.
You need just this - endOfMonth(Date, -1) +1
.Count tell you how many items endofmonth function returned ( 1) 1+1 = 2 is formatted as date giving you 02/01/1900.