Current process is:
Get dataset which contains a few hundred entites.
Loop over each record in dataset
Set VariableTemp = OutputVariable
Set OutputVariable = concatentate(VariableTemp, "<br />", PropertyX)
Write OutputVariable to file
Problem is, the above method takes a long time. I have a 600 record dataset and processing takes 6 minutes to run the loop step. Another process does the same 2 step loop runs through 18,000 records and takes over 2 hours.
If there is a better way to build a string please let me know. The current method works, but I'd prefer to do something much less resource intensive.