Search results

  1. C

    trying to type BALLANCE into text field

    Sorted Thanks had looked through autocorrect and had missed ballance being there, sometimes the obvious is the easiest missed
  2. C

    trying to type BALLANCE into text field

    Have an odd problem that eludes me at the moment I have table with a text field for surnames and if I type the surname Ballance into the table it automatically reverts to Balance can see no logical explanation for this at the moment funnily it does exactly the same in excel
  3. C

    help with text handling

    Thanks very much that works, also found another way round as shown. As always with Access more ways than one of skinning the cat Public Sub AbbrevF(AbbrevForename As String, FullForename As String) Dim rstTable As DAO.Recordset Dim myForenameBefore As String Dim myForenameAfter As String With...
  4. C

    help with text handling

    yes but get following error message Runtime error 3020 Update or CanceUpdate without AddNew or edit which I do not undestand because I use dbOpenDynaset
  5. C

    help with text handling

    Hi Have the following code that works on Access 2000 Dim myForenameBefore As String Dim myForenameAfter As String With CurrentDb.OpenRecordset("Names", dbOpenDynaset) Do Until .EOF myForenameBefore = .Fields("Forename") myForenameAfter = Replace(.Fields("Forename"), "Elizh", "Elizabeth")...
  6. C

    repartial text

    ok found that will get back to you
  7. C

    repartial text

    thanks matt nearly got that but replace function keeps coming back with a compile error "Expected =" will keep looking to see what I am doing wrong. Incidentally using Access 2000 Phil
  8. C

    repartial text

    Hi Looking for help with partial text replacement I get various tables with Forenames in them some of which are shortened ie Elizh for Elizabeth, using an update query i can obviously convert all the Elizh's to Elizabeth but when the Elizh appear as the second or third name I am stumped ie...
Back
Top Bottom