I tried using a VB module to perform the replace action here' s the code
Option Compare Database
Option Explicit
Function chan()
DoCmd.OpenTable "Frthedp", acViewDesign, acEdit
Do While Not [Frthedp]![SCAC]
DoCmd.GoToRecord , , acNewRec
If (Right([Frthedp]![SCAC], 1) = "*") Then
Right([Frthedp]![SCAC], 1) = " "
End If
End
End Function
but the problem is the compiler is not identifying the table Frthdp and so its gives a compilation error "external name not defined"
ANY SUGGESTIONS PLS!!!!!!