I have a multi-value field that I want to parse through. Each row in the database can only store 75 Characters so that is my break point.
If the String contains 200 Characters for example, I have to get the String Char Count =200.
Then 200/75=2.667 Rounded to whole =3 :This gets me the Row Count.
I need to now load the parsed sections of the whole Multi-value string.
For Each Row:
I know I need to get the Start Char and End Char. I do this by:
(Row Count*75)-74 = Start Char
(Row Count*75) = End Char
How can I feed the Start Char - End Char Range to get me the portion of the Multi-value string I need to store at that given Row?