0
How can I add additional fields to the returned array?
I want to add a newline character after each comma in an array.
For example, Original code.
for loop in select Customers do
loop.'Customer information'
end
Returns Value.
[116.3219065673952,39.65193959022936,'M82F+C7F, Jingkai Side Rd, Da Xing Qu, Bei Jing Shi, China, 102601'],[116.56897422188871,39.760379224871365,'QH69+5H Tongzhou, Beijing, China']....
add a newline.
[116.3219065673952,39.65193959022936,'M82F+C7F, Jingkai Side Rd, Da Xing Qu, Bei Jing Shi, China, 102601'],
[116.56897422188871,39.760379224871365,'QH69+5H Tongzhou, Beijing, China'],
.....
3 replies
-
Do you want to add a new line or a new field?
If you want to add a new line, I politely ask, why? I would recommend you don't mess with how arrays look as they are formatted in a way that Ninox can recognize when items start and stop.
-
for loop in select Customers do " "+loop.'Customer information' end
Done!
Content aside
- Status Answered
- 3 mths agoLast active
- 3Replies
- 56Views
-
2
Following