S snipersix Nov 24, 2006 #21 this is the SQL of my Append Query INSERT INTO LogFile ( UserName, TimeLogged ) VALUES (CurrentUser, Now());
this is the SQL of my Append Query INSERT INTO LogFile ( UserName, TimeLogged ) VALUES (CurrentUser, Now());
R Rick Brandt Nov 24, 2006 #22 snipersix said: this is the SQL of my Append Query INSERT INTO LogFile ( UserName, TimeLogged ) VALUES (CurrentUser, Now()); Click to expand... CurrentUser is a function so you need the () on the end just like you have after Now(). INSERT INTO LogFile ( UserName, TimeLogged ) VALUES (CurrentUser(), Now());
snipersix said: this is the SQL of my Append Query INSERT INTO LogFile ( UserName, TimeLogged ) VALUES (CurrentUser, Now()); Click to expand... CurrentUser is a function so you need the () on the end just like you have after Now(). INSERT INTO LogFile ( UserName, TimeLogged ) VALUES (CurrentUser(), Now());