thanks, i'm afraid i'm not advanced enough to understand this
I'm trying to do a few things.
The different formulas i have are:
local stringvar array br := chr(13)&chr(10);
replace({SL_ACCOUNTS.CUADDRESS},chr (13),",");
And I'm trying to resize the array:
Local StringVar array x := {SL_ACCOUNTS.CUADDRESS};
// resize the array to size 8 while preserving the old values.
Redim Preserve x [8];
x[8] := "";
x[8]
And then split the data into different fields:
Split(
{@Address}, ",")[1]
Split(
{@Address}, ",")[2]
Split(
{@Address}, ",")[3] etc....