Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to use LEFT function

Status
Not open for further replies.

kashew

Programmer
Feb 22, 2001
35
0
0
US
I just left the MSAccess world and have started to learn BObjects. I have no docs at the present time. Can someone tell me how I enter a condition that will read the first 3 characters of a data field?
example: Left(object,3) equal to 'abc'
 
kashew,

you will find all the BO documentation on your CD in PDF format. You can use the online help as well

From the online help:
- Syntax
Left(character string, number of characters)
- Description
Takes out the specified number of characters from the left of the character string.
-Example
Left("Date of the Order",4) returns Date.


If you want to build an objects in you universe, you have to use the MS Access SQL syntax: left(table.column,3)

Hope it will help you.

GKar
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top