Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Dates 1

Status
Not open for further replies.

scon165

Technical User
Dec 27, 2001
7
US
I have a date field that shows the exact date the service was performed, but on my report when it displays they only want it to display back to the first of whatever month it is in. Is there a formula that will convert it for me? Example if the date shows 09/15/2003 I want it to display 09/01/2003.

Thanks
Sharon
 
Try:

cdate(year({table.datefield}),month({table.datefield}),1)

or try:

{table.datefield}-(day({table.datefield})-1)

-k
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top