Hi
Using MS Asccess 2000:
In a query I'm trying to create a new field with following expression:
FilmDate: Left([FilmNo],4)
The field "FilmNo" is another text field in the query.
This is expression should return the 4 leftmost characters of the FilmNo
field.
But: Access is reporting:
Syntax error in expression. Missing operator or operand, you might be using
an invalid character , using a comma in stead of a semicolon etc...
What is wrong?
Thanks, John 7 6651
Suggestions:
1. Press Ctrl+G to open the Immediate Window.
Then choose References from the Tools menu.
Any marked "MISSING"? If so, see: http://allenbrowne.com/ser-38.html
2. Is this a Text type field (not a Number type field)?
3. Could there be fewer than 4 characters in the field (e.g. Null)?
4. Any ambiguities, e.g. 2 tables with a FilmNo field, or a table that has a
FilmDate field?
5. Problem could be in another part of the query.
--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
"John Xllgerd Jensen" <NOSPAM@jo******@post.cybercity.dk> wrote in message
news:44***********************@dread12.news.tele.d k... Using MS Asccess 2000:
In a query I'm trying to create a new field with following expression:
FilmDate: Left([FilmNo],4)
The field "FilmNo" is another text field in the query. This is expression should return the 4 leftmost characters of the FilmNo field.
But: Access is reporting:
Syntax error in expression. Missing operator or operand, you might be using an invalid character , using a comma in stead of a semicolon etc...
What is wrong?
Problem is NOT solved.
1) No references were marked as MISSING
Following references are marked as available:
- Visual Basic for Applications
- Microsoft Access 9.0 Object Library
- OLE Automation
- utility
- Microsoft Visual Basic for Applications Extensibillity 5.3
The query is made of only one single table - so no ambiguities possible.
The FilmNo field of the table is of the Text type - and all records are
containing more than 4 characters.
The problem can be re-produced in another query made of another new table
with only 1 ID (autoNumber) field + one text field. Using the Left function
in the query is giving the same error message.
Note: I'm writing exactly FilmDate: Left([FilmNo],4) in a new field cell in
the query design grid. Should any "=" be used?
When used in VBA code the Left([FilmNo],4) expression is working as
expected.
Regards John
"Allen Browne" <Al*********@SeeSig.Invalid> skrev i en meddelelse
news:44***********************@per-qv1-newsreader-01.iinet.net.au... Suggestions:
1. Press Ctrl+G to open the Immediate Window. Then choose References from the Tools menu. Any marked "MISSING"? If so, see: http://allenbrowne.com/ser-38.html
2. Is this a Text type field (not a Number type field)?
3. Could there be fewer than 4 characters in the field (e.g. Null)?
4. Any ambiguities, e.g. 2 tables with a FilmNo field, or a table that has a FilmDate field?
5. Problem could be in another part of the query.
-- Allen Browne - Microsoft MVP. Perth, Western Australia. Tips for Access users - http://allenbrowne.com/tips.html Reply to group, rather than allenbrowne at mvps dot org.
"John Xllgerd Jensen" <NOSPAM@jo******@post.cybercity.dk> wrote in message news:44***********************@dread12.news.tele.d k... Using MS Asccess 2000:
In a query I'm trying to create a new field with following expression:
FilmDate: Left([FilmNo],4)
The field "FilmNo" is another text field in the query. This is expression should return the 4 leftmost characters of the FilmNo field.
But: Access is reporting:
Syntax error in expression. Missing operator or operand, you might be using an invalid character , using a comma in stead of a semicolon etc...
What is wrong?
"John Øllgård Jensen" <NOSPAM@jo******@post.cybercity.dk> wrote in message
news:44***********************@dread12.news.tele.d k... Problem is NOT solved.
1) No references were marked as MISSING
Following references are marked as available: - Visual Basic for Applications - Microsoft Access 9.0 Object Library - OLE Automation - utility - Microsoft Visual Basic for Applications Extensibillity 5.3
The query is made of only one single table - so no ambiguities possible. The FilmNo field of the table is of the Text type - and all records are containing more than 4 characters.
The problem can be re-produced in another query made of another new table with only 1 ID (autoNumber) field + one text field. Using the Left function in the query is giving the same error message.
Note: I'm writing exactly FilmDate: Left([FilmNo],4) in a new field cell in the query design grid. Should any "=" be used?
When used in VBA code the Left([FilmNo],4) expression is working as expected.
Regards John "Allen Browne" <Al*********@SeeSig.Invalid> skrev i en meddelelse news:44***********************@per-qv1-newsreader-01.iinet.net.au... Suggestions:
1. Press Ctrl+G to open the Immediate Window. Then choose References from the Tools menu. Any marked "MISSING"? If so, see: http://allenbrowne.com/ser-38.html
2. Is this a Text type field (not a Number type field)?
3. Could there be fewer than 4 characters in the field (e.g. Null)?
4. Any ambiguities, e.g. 2 tables with a FilmNo field, or a table that has a FilmDate field?
5. Problem could be in another part of the query.
-- Allen Browne - Microsoft MVP. Perth, Western Australia. Tips for Access users - http://allenbrowne.com/tips.html Reply to group, rather than allenbrowne at mvps dot org.
"John Xllgerd Jensen" <NOSPAM@jo******@post.cybercity.dk> wrote in message news:44***********************@dread12.news.tele.d k... Using MS Asccess 2000:
In a query I'm trying to create a new field with following expression:
FilmDate: Left([FilmNo],4)
The field "FilmNo" is another text field in the query. This is expression should return the 4 leftmost characters of the FilmNo field.
But: Access is reporting:
Syntax error in expression. Missing operator or operand, you might be using an invalid character , using a comma in stead of a semicolon etc...
What is wrong?
Sending your regards is one thing, but sending your thanks is even better,
especially when Allen does all this for free.
One of the suggestions is whether the error comes from another part of the
query, you haven't posted the complete SQL for the query. From the View
menu choose SQL View and let us know what you have there. If you write
FilmDate: Left([FilmNo],4) then this should come out as something like:
SELECT FilmID, FilmName,
Left([FilmNo],4) AS FilmDate
FROM tblFilm
Make sure the Name AutoCorrect boxes are unchecked under:
Tools | Options | General
Then compact the database.
No "=" is needed. (Access will probably remove it if you type it.)
Presumably you do not have another field named FilmDate.
Post the SQL statement (SQL View of the query.)
--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
"John Xllgerd Jensen" <NOSPAM@jo******@post.cybercity.dk> wrote in message
news:44***********************@dread12.news.tele.d k... Problem is NOT solved.
1) No references were marked as MISSING
Following references are marked as available: - Visual Basic for Applications - Microsoft Access 9.0 Object Library - OLE Automation - utility - Microsoft Visual Basic for Applications Extensibillity 5.3
The query is made of only one single table - so no ambiguities possible. The FilmNo field of the table is of the Text type - and all records are containing more than 4 characters.
The problem can be re-produced in another query made of another new table with only 1 ID (autoNumber) field + one text field. Using the Left function in the query is giving the same error message.
Note: I'm writing exactly FilmDate: Left([FilmNo],4) in a new field cell in the query design grid. Should any "=" be used?
When used in VBA code the Left([FilmNo],4) expression is working as expected.
Regards John "Allen Browne" <Al*********@SeeSig.Invalid> skrev i en meddelelse news:44***********************@per-qv1-newsreader-01.iinet.net.au... Suggestions:
1. Press Ctrl+G to open the Immediate Window. Then choose References from the Tools menu. Any marked "MISSING"? If so, see: http://allenbrowne.com/ser-38.html
2. Is this a Text type field (not a Number type field)?
3. Could there be fewer than 4 characters in the field (e.g. Null)?
4. Any ambiguities, e.g. 2 tables with a FilmNo field, or a table that has a FilmDate field?
5. Problem could be in another part of the query.
"John Xllgerd Jensen" <NOSPAM@jo******@post.cybercity.dk> wrote in message news:44***********************@dread12.news.tele.d k... Using MS Asccess 2000:
In a query I'm trying to create a new field with following expression:
FilmDate: Left([FilmNo],4)
The field "FilmNo" is another text field in the query. This is expression should return the 4 leftmost characters of the FilmNo field.
But: Access is reporting:
Syntax error in expression. Missing operator or operand, you might be using an invalid character , using a comma in stead of a semicolon etc...
What is wrong?
Sorry for signing with "Regards" and not "thanks" (as in my initial
question). My native language is not English - so....
Switching from design view to the SQL window is not possible when
Left([FilmNo],4) has been entered. The error message pops up right after
trying to change focus from the field of the design grid.
Next I tried coding the whole SQL expression including the Left function
directly in the SQL window. When trying to return to design view a similar
error message turnes up: Syntax error. Missing operator in expression "Left
(...)".
Thank you in advance, John
PS: My MS Access 2000 is the Danish version (9.0.6926 SP-3)
"Anthony England" <ae******@oops.co.uk> skrev i en meddelelse
news:dv**********@nwrdmz01.dmz.ncs.ea.ibs-infra.bt.com... "John Øllgård Jensen" <NOSPAM@jo******@post.cybercity.dk> wrote in message news:44***********************@dread12.news.tele.d k... Problem is NOT solved.
1) No references were marked as MISSING
Following references are marked as available: - Visual Basic for Applications - Microsoft Access 9.0 Object Library - OLE Automation - utility - Microsoft Visual Basic for Applications Extensibillity 5.3
The query is made of only one single table - so no ambiguities possible. The FilmNo field of the table is of the Text type - and all records are containing more than 4 characters.
The problem can be re-produced in another query made of another new table with only 1 ID (autoNumber) field + one text field. Using the Left function in the query is giving the same error message.
Note: I'm writing exactly FilmDate: Left([FilmNo],4) in a new field cell in the query design grid. Should any "=" be used?
When used in VBA code the Left([FilmNo],4) expression is working as expected.
Regards John "Allen Browne" <Al*********@SeeSig.Invalid> skrev i en meddelelse news:44***********************@per-qv1-newsreader-01.iinet.net.au... Suggestions:
1. Press Ctrl+G to open the Immediate Window. Then choose References from the Tools menu. Any marked "MISSING"? If so, see: http://allenbrowne.com/ser-38.html
2. Is this a Text type field (not a Number type field)?
3. Could there be fewer than 4 characters in the field (e.g. Null)?
4. Any ambiguities, e.g. 2 tables with a FilmNo field, or a table that has a FilmDate field?
5. Problem could be in another part of the query.
-- Allen Browne - Microsoft MVP. Perth, Western Australia. Tips for Access users - http://allenbrowne.com/tips.html Reply to group, rather than allenbrowne at mvps dot org.
"John Xllgerd Jensen" <NOSPAM@jo******@post.cybercity.dk> wrote in message news:44***********************@dread12.news.tele.d k...
Using MS Asccess 2000:
In a query I'm trying to create a new field with following expression:
FilmDate: Left([FilmNo],4)
The field "FilmNo" is another text field in the query. This is expression should return the 4 leftmost characters of the FilmNo field.
But: Access is reporting:
Syntax error in expression. Missing operator or operand, you might be using an invalid character , using a comma in stead of a semicolon etc...
What is wrong?
Sending your regards is one thing, but sending your thanks is even better, especially when Allen does all this for free. One of the suggestions is whether the error comes from another part of the query, you haven't posted the complete SQL for the query. From the View menu choose SQL View and let us know what you have there. If you write FilmDate: Left([FilmNo],4) then this should come out as something like:
SELECT FilmID, FilmName, Left([FilmNo],4) AS FilmDate FROM tblFilm
Hi, Left([FilmNo],4) PS: My MS Access 2000 is the Danish version (9.0.6926 SP-3)
Is it possible that you have to replace (in your danish version) comma with
semicolon, as I have to do it in my german version ?
It's just an idea.....
Jens
YES, Jens!!!
Rigth before I read your proposal, I did that - and it worked!
Specifying the Left argument separators with "," in the SQL view is
convented to ";" when switching to design view, i.e.:
Left([FilmNo],4) when using SQL view
but
Left([FilmNo];4) when using design view
Thank you to all of you.
- John
"Jens Schilling" <je************************@fissership.de> skrev i en
meddelelse news:dv*************@news.t-online.com... Hi,
Left([FilmNo],4) PS: My MS Access 2000 is the Danish version (9.0.6926 SP-3)
Is it possible that you have to replace (in your danish version) comma with semicolon, as I have to do it in my german version ?
It's just an idea.....
Jens This discussion thread is closed Replies have been disabled for this discussion. Similar topics
23 posts
views
Thread by Paul Rubin |
last post: by
|
29 posts
views
Thread by shank |
last post: by
|
12 posts
views
Thread by Phil Powell |
last post: by
|
2 posts
views
Thread by Mikel |
last post: by
|
1 post
views
Thread by amitbadgi |
last post: by
|
14 posts
views
Thread by cvollberg via AccessMonster.com |
last post: by
|
3 posts
views
Thread by Henrootje |
last post: by
|
9 posts
views
Thread by Alan Mailer |
last post: by
| | | | | | | | | | | |