A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Replace Function Help



 
 
Thread Tools Display Modes
  #1  
Old August 9th, 2004, 07:33 PM
Terry
external usenet poster
 
Posts: n/a
Default Replace Function Help

I am using Access 2003, and am using the "replace" function to strip some
unwanted characters from a dataset. My problem is that I need to import that
query into a larger database that is on computers using Access 2000, which
does not have the replace function.

Is there a simular function in Access 2000?, or
Is there a way to import the replace function to an existion Access 2000
database?

Terry Schawe



  #2  
Old August 9th, 2004, 08:43 PM
Wayne Morgan
external usenet poster
 
Posts: n/a
Default Replace Function Help

Access 2000 does have the Replace function; however, it won't work in a
query. What you need to do is create your own function and call it. You can
use Replace in that function.

Example:

Public Function MyReplace(strSearchString As String, strFindWhat As String,
strReplaceWith As String) As String
MyReplace = Replace(strSearchString, strFindWhat, strReplaceWith)
End Function

--
Wayne Morgan
MS Access MVP


"Terry" wrote in message
...
I am using Access 2003, and am using the "replace" function to strip some
unwanted characters from a dataset. My problem is that I need to import

that
query into a larger database that is on computers using Access 2000, which
does not have the replace function.

Is there a simular function in Access 2000?, or
Is there a way to import the replace function to an existion Access 2000
database?

Terry Schawe





  #3  
Old August 10th, 2004, 05:16 AM
Wayne Morgan
external usenet poster
 
Posts: n/a
Default Replace Function Help

Terry,

Are you still having a problem? If so, can you post the SQL of the query?

--
Wayne Morgan
MS Access MVP


  #4  
Old August 10th, 2004, 06:17 AM
Wayne Morgan
external usenet poster
 
Posts: n/a
Default Replace Function Help

I have received information that I was thinking of the wrong thing. The
function will work in a query in Access 2000, but it won't work in a
textbox. In that case, you would have to do as I had mentioned.

http://support.microsoft.com/default...roduct=acc2000

--
Wayne Morgan
MS Access MVP


  #5  
Old August 10th, 2004, 10:49 AM
Brendan Reynolds
external usenet poster
 
Posts: n/a
Default Replace Function Help

You could still be right about the cause of Terry's problem, Wayne. The
Replace() function definitely did not work in queries when Access 2000 was
originally released. I could be wrong about this, but I suspect that whether
it works or not in Access 2000 now probably depends on the versions of the
Jet and/or VBA DLLs present.

--
Brendan Reynolds (MVP)
http://brenreyn.blogspot.com

The spammers and script-kiddies have succeeded in making it impossible for
me to use a real e-mail address in public newsgroups. E-mail replies to
this post will be deleted without being read. Any e-mail claiming to be
from brenreyn at indigo dot ie that is not digitally signed by me with a
GlobalSign digital certificate is a forgery and should be deleted without
being read. Follow-up questions should in general be posted to the
newsgroup, but if you have a good reason to send me e-mail, you'll find
a useable e-mail address at the URL above.


"Wayne Morgan" wrote in message
...
I have received information that I was thinking of the wrong thing. The
function will work in a query in Access 2000, but it won't work in a
textbox. In that case, you would have to do as I had mentioned.


http://support.microsoft.com/default...roduct=acc2000

--
Wayne Morgan
MS Access MVP




  #6  
Old August 10th, 2004, 01:43 PM
Ken Snell
external usenet poster
 
Posts: n/a
Default Replace Function Help

This is correct. I believe Jet4 SP6 fixed this problem.

--

Ken Snell
MS ACCESS MVP

"Brendan Reynolds" brenreyn at indigo dot ie wrote in message
...
You could still be right about the cause of Terry's problem, Wayne. The
Replace() function definitely did not work in queries when Access 2000 was
originally released. I could be wrong about this, but I suspect that

whether
it works or not in Access 2000 now probably depends on the versions of the
Jet and/or VBA DLLs present.

--
Brendan Reynolds (MVP)
http://brenreyn.blogspot.com

The spammers and script-kiddies have succeeded in making it impossible for
me to use a real e-mail address in public newsgroups. E-mail replies to
this post will be deleted without being read. Any e-mail claiming to be
from brenreyn at indigo dot ie that is not digitally signed by me with a
GlobalSign digital certificate is a forgery and should be deleted without
being read. Follow-up questions should in general be posted to the
newsgroup, but if you have a good reason to send me e-mail, you'll find
a useable e-mail address at the URL above.


"Wayne Morgan" wrote in

message
...
I have received information that I was thinking of the wrong thing. The
function will work in a query in Access 2000, but it won't work in a
textbox. In that case, you would have to do as I had mentioned.



http://support.microsoft.com/default...roduct=acc2000

--
Wayne Morgan
MS Access MVP






 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Function for % gain? Norman Harker Worksheet Functions 4 April 1st, 2004 11:54 AM
Dedupe Function works/works not Tom Bock Worksheet Functions 5 March 17th, 2004 08:41 PM
Modify "Remove Dots" function Tom Bock Worksheet Functions 3 March 15th, 2004 09:28 PM
WEEKNUM function david p Worksheet Functions 8 March 13th, 2004 03:24 PM
VBA user-defined worksheet function Val Worksheet Functions 2 December 8th, 2003 07:53 AM


All times are GMT +1. The time now is 10:01 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.