paste the code below into a module, then run an update query on your fields.
It will randomize the letters.
usage:
RandLtr([firstName])
Code:
Public Function RandLtr(ByVal pvWord)
Dim i As Integer
Dim vChr, vNum, vNewWord
if IsNull(pvWord) then exit function
For i = 1 To Len(pvWord)
vChr = Mid(pvWord, i, 1)
If vChr <> " " Then
vNum = Random(26)
vChr = Trim(Chr(vNum + 64))
End If
vNewWord = vNewWord & vChr
Next
RandLtr = vNewWord
End Function
'generate a random # between 1 and #given
Public Function Random(ByVal pvNum)
Random = Int((pvNum * Rnd) + 1)
End Function