Search results

  1. J

    Removing the Enter from a string in Access 97

    I am trying to remove all enters from a text string and replace them with a comma and a space in Access 97 which means that I can't use the Replace function as that doesn't exist in this version. I am using the following code: For x = 1 To Len(string) y = Mid(string, x, 1)...
Back
Top Bottom