P
Peter Thomas
A simple piece of SQL that works in Access does not work in MS Quer
(EXCEL)
ACESS:
SELECT 'http://xxxxxx/im/WebClient?IssueID='&ciuser_Issues.ID
FROM ciuser_Issues;
ACESS RESULT
SQL above returns a result that catenates my text with the issues.id.
http://xxxxxx/im/WebClient?IssueID=1
In MS Query I need to use :
SELEC
'http://xxxxxx:9001/im/WebClient?IssueID='+STR(ciuser_Issues.ID)
FROM ciuser_Issues;
MSQUERY RESULT
http://xxxxxx/im/WebClient?IssueID= 1 (Note the spaces between the
and the 1.
Any ideas how to get rif of she spaces in MS Query
(EXCEL)
ACESS:
SELECT 'http://xxxxxx/im/WebClient?IssueID='&ciuser_Issues.ID
FROM ciuser_Issues;
ACESS RESULT
SQL above returns a result that catenates my text with the issues.id.
http://xxxxxx/im/WebClient?IssueID=1
In MS Query I need to use :
SELEC
'http://xxxxxx:9001/im/WebClient?IssueID='+STR(ciuser_Issues.ID)
FROM ciuser_Issues;
MSQUERY RESULT
http://xxxxxx/im/WebClient?IssueID= 1 (Note the spaces between the
and the 1.
Any ideas how to get rif of she spaces in MS Query