G genevx Registered User. Local time Yesterday, 16:10 Joined Jul 3, 2002 Messages 36 Jul 8, 2002 #1 Hi, How do you get only the date with use of the NOW function and not with the time also? thanks
ColinEssex Old registered user Local time Today, 00:10 Joined Feb 22, 2002 Messages 9,451 Jul 8, 2002 #2 Date()
Nero Shop smart, shop S-Mart Local time Today, 00:10 Joined Jan 8, 2002 Messages 217 Jul 8, 2002 #3 You can use the Now function just make sure that your field is set to short date format. But the Date() format is preferred
You can use the Now function just make sure that your field is set to short date format. But the Date() format is preferred
P Pat Hartman Super Moderator Staff member Local time Yesterday, 19:10 Joined Feb 19, 2002 Messages 47,035 Jul 8, 2002 #4 Format only affects how data is displayed. It does not change how it is stored. Date() is the function to use when you don't want to store the time. Of course you could always use Format(Now(),"Short Date") - but what's the point.
Format only affects how data is displayed. It does not change how it is stored. Date() is the function to use when you don't want to store the time. Of course you could always use Format(Now(),"Short Date") - but what's the point.
G genevx Registered User. Local time Yesterday, 16:10 Joined Jul 3, 2002 Messages 36 Jul 8, 2002 #5 heh...thanks guys...greatly appreciate it!