A family of Microsoft relational database management systems designed for ease of use.
Hey IMB. After two days of use with the shorted formula the issue of Access Crashing happened again. :(
Hi Ale,
So, probably it is some issue with the new 365 version.
How are "SCAP" and/or "SIAP" to find in the control Me.Review_Attributes? At the beginning, at the end or somewhere in the text?
You could use a alternative function, something like:
Function Occurs(org_text As String, search As String) As Integer
Dim org_arr() As String
org_arr = Split(org_text, search)
Select Case UBound(org_arr)
Case -1, 0
Occurs = 0
Case Else
Occurs = Len(org_arr(0)) + 1
End Select
End Function
You can place this function in a general module.
I hope this solves your problem.
Imb.