Thread: Date Function
View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
Ron Rosenfeld Ron Rosenfeld is offline
external usenet poster
 
Posts: 5,651
Default Date Function

On Tue, 15 Aug 2006 11:34:02 -0700, Woody13
wrote:

I'm trying to find a formula that will take a date and give a result of the
beggining of the next month. So if the cell has 8/15/2006, the forumula
returns 9/1/2006. If the cell has 8/25/2006, the cell returns 9/1/2006. Any
help is appreciated


If you don't want to use the Analysis Tool Pak:

=A1-DAY(A1)+33-DAY(A1-DAY(A1)+32)


--ron