Error Message

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am getting "InValid Argument" when trying to name this query

SELECT BUQ.*,Format([TimeOfMessage],"@@:@@:@@")
FROM BUQ;

What am I doing wrong ?
 
What is it you are trying to accomplish? Is [TimeOfMessage] a field in BUQ?
If so, then you need to give it an alias like this:
SELECT BUQ.*,Format(BUQ.TimeOfMessage,"@@:@@:@@") As MessageTime
FROM BUQ;

Now your query will have an additional field named MessageTime.
 
Back
Top