Re: Using the $ after functions
- From: John Spencer <spencer@xxxxxxxxx>
- Date: Tue, 23 Dec 2008 12:23:54 -0500
No that would error, you must specify a length. Of course, you could specify a length of 5000 and just get the entire string.
Left$(Null,5000) will generate an error
Left(Null,5000) will return null
John Spencer
Access MVP 2002-2005, 2007-2008
The Hilltop Institute
University of Maryland Baltimore County
TheUbe wrote:
So For Example:.
Dim AnyString, MyStr
AnyString = "Hello World" ' Define string.
mystring = Left$(AnyString)
I would not need to use the variant that defined how many characters from the left I wanted it would return the entire string?
- References:
- Using the $ after functions
- From: TheUbe
- Re: Using the $ after functions
- From: Alex Dybenko
- Re: Using the $ after functions
- From: TheUbe
- Using the $ after functions
- Prev by Date: Re: Use relationship or not?
- Next by Date: Re: Use relationship or not?
- Previous by thread: Re: Using the $ after functions
- Next by thread: Re: Using the $ after functions
- Index(es):
Relevant Pages
|