Hi Fagun,
Thanks, appreciate you help. I already tried that (actually from reading another of your posts here).
It solved the first problem by getting all data in one text field, however the issue is that the data in the process gets mangled up. From my iterator I get two output of time entries for my time logging:
1. Task title A, start time A, end time A
2. Task title B, start time B, end time B
Using Line Itemizer I get one text yes, however it mixes them together which make them unusable. I get 3 lines:
1. Task title A, Task title B
2. Start time A, Start time B
3. End time A, End time B
And replacing comma with new lines get's me:
Task title A
Task title B
Start time A
Start time B
End time A
End time B
Either way the start and end times are separated from the task they belong to.
Want I need returned to use the data is simply two lines:
1. Task title A, start time A, end time A
2. Task title B, start time B, end time B
I hope it makes sense. I would imagine this would be simple, but I can't just figure out how to get this result.