Date problem

maheshmaurya1987maheshmaurya1987 Member Posts: 21
Hi,
All I have a problem with Date.My Problem is that,I want to print the date as Example
Thursday, April 14 2011 . There the day should be print. please give the solution that how we print this.

Comments

  • MGM08MGM08 Member Posts: 41
    Please see the help for
    DATE2DWY (Date)

    Hope this helps.
  • Luc_VanDyckLuc_VanDyck Member, Moderator, Administrator Posts: 3,633
    Check out the on-line help for the C/AL function FORMAT.
    datDate := 14042011D;
    MESSAGE(FORMAT(datDate,0,'<Weekday Text>, <Month Text> <Day> <Year4>'));
    
    No support using PM or e-mail - Please use this forum. BC TechDays 2024: 13 & 14 June 2024, Antwerp (Belgium)
  • maheshmaurya1987maheshmaurya1987 Member Posts: 21
    Thanks for Reply..................................
Sign In or Register to comment.