Apr 14, 2011 #1 Rattlers1 Programmer Apr 14, 2011 2 US Hello; I need a formula to determine what was the first and last day of the current month. Thanks.
Apr 14, 2011 #2 fisheromacse IS-IT--Management May 4, 2009 910 US First day of current month: //{@MoFirst} dateserial(year(currentdate),month(currentdate),1) Last day of current month: //{@MoLast} dateserial(year(currentdate),(month(currentdate))+1,1)-1; Upvote 0 Downvote
First day of current month: //{@MoFirst} dateserial(year(currentdate),month(currentdate),1) Last day of current month: //{@MoLast} dateserial(year(currentdate),(month(currentdate))+1,1)-1;