Reputation: 95
I have tried this one, Mid([Tom]![Subject];InStr([Tom]![Subject];":")+1)
However, this extracts only the text after the first colon.
I need to extract the text after the second colon.
Any ideas?
Upvotes: 0
Views: 191
Reputation: 6336
Use first parameter of InStr function:
Mid([Tom]![Subject];InStr(InStr([Tom]![Subject];":")+1,[Tom]![Subject];":")+1)
Upvotes: 1