metalgears
Technical User
Hi Everyone,
dim i as number
dim str as string
for i = 1 to 4
str = str + cstr(i)+ chr(13)
next i
formula = str
This simple formula field returns
1
I want it to return
1
2
3
4
if I take out the chr(13) i get
1234
I am using CR 11.
TIA
dim i as number
dim str as string
for i = 1 to 4
str = str + cstr(i)+ chr(13)
next i
formula = str
This simple formula field returns
1
I want it to return
1
2
3
4
if I take out the chr(13) i get
1234
I am using CR 11.
TIA