Hello All,
I'm not very familiar using arrays and found myself getting more confused with each reference source I read. I have an array that I am trying to read into a new table or a temp table.
Here is the function so far:
Any help is most appreciated,
Bender
I'm not very familiar using arrays and found myself getting more confused with each reference source I read. I have an array that I am trying to read into a new table or a temp table.
Here is the function so far:
Code:
Function SplitMemo()
Dim astrMemo,memo
Dim i as integer
memo = Dlookup("[Ordernotes]","tbl_test1")
astrmemo = split(memo,"\")
For i = 0 to UBound(astrMemo)
Debug.print astrMemo(i)
Next
'I assume appending the array to a table begins here
End Function
Bender
Comment