Jul 7, 2006 #1 perimidt Technical User Jul 7, 2006 3 NO I am trying make a datefield which to return seven days ago. I have tried this: DateAdd ('dd', -7, now()) But I only get an error message which says: DATEADD in *LIBL type *N not found Any insight anyone? Best regards Per Erik
I am trying make a datefield which to return seven days ago. I have tried this: DateAdd ('dd', -7, now()) But I only get an error message which says: DATEADD in *LIBL type *N not found Any insight anyone? Best regards Per Erik
Jul 7, 2006 #2 saiamarthya MIS Apr 27, 2006 7 US Hello Per Erik, you are using single quotes, you have to use double quotes "d" DateAdd ("dd", -7, now()) bye sai Amarthya Upvote 0 Downvote
Hello Per Erik, you are using single quotes, you have to use double quotes "d" DateAdd ("dd", -7, now()) bye sai Amarthya
Jul 10, 2006 Thread starter #3 perimidt Technical User Jul 7, 2006 3 NO Thanks, I'll give it a shot. Per Erik Upvote 0 Downvote