Here's a function for a Standard Module that could be used in an Update query to populate the *new* CaseNum field.
Code:
Public Function CaseNum(InField As String) As String
' Extract the Case Number from the incoming InField value, if it exists. Dim StartPos As Long
StartPos = Nz(InStr(InField, "#"), 0)
If StartPos > 0 Then
CaseNum = Mid(InField, StartPos + 1, 16)
Else
CaseNum = ""
End If
End Function
You would first need to create this new field in the table as a String DataType (Text) and then you could run the query to populate the field. The function currently assumes the value is the first 16 characters after the first "#" character in the memo field. Be sure and try this on a backUp of your db before going for broke.