I want to ask how to make program or coding on report, format date, if I use format(date,0,4), it will display date with period, e.g. 25. July 2002, How to make this period disappear
What do you exactly mean by making this period disappear ??? ###### tarek_demiati@ureach.com
Have you checked the Online Help about the FORMAT-Function? Here a few examples to format a date:
quote:
Date <Day,2>-<Month,2>- <Day,2>-<Month,2>- <Day,2><Month,2>D -<Month,2>-<Day,2> . <Day,2><Month,2> <Month,2><Day,2> <Day,2><Filler Character, >. <Month Text,3> US Date <Month,2>/<Day,2>/ <Month,2>/<Day,2>/ <Month,2><Day,2>D /<Month,2>/<Day,2> . <Month,2><Day,2> <Month,2><Day,2>
Joerg A. Stryk Apollo-Optik, IT/ERP
for example 25. july 2002, between 25 and july there is period or dot (‘.’), so, I want to know how to make this dot or period disappear?
quote:
Originally posted by Tarek Demiati: What do you exactly mean by making this period disappear ??? ###### tarek_demiati@ureach.com
You can use FORMAT(TODAY,0,’ ') in the SourceExpr of your control.
Thank you, it’s work buddy…
quote:
Originally posted by PeterD: You can use FORMAT(TODAY,0,‘ ’) in the SourceExpr of your control.