- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
List to String
I want to take a list and express the entire list as a comma separated string. My purpose is to name the finished data table to include all the items in the list.
Char(List_items);
Works but it's ugly, is there a better way?
{-Item 1-, -Item 2-}
Slán
SpannerHead
2 ACCEPTED SOLUTIONS
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: List to String
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: List to String
Created:
Jan 13, 2025 01:25 PM
| Last Modified: Jan 13, 2025 10:27 AM
(359 views)
| Posted in reply to message from jthi 01-13-2025
Jarmo
Better than what I had for sure. To get the delimiter, I did this.
Lots = Concat Items(List, ", ");
Slán
SpannerHead
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: List to String
-Jarmo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: List to String
Created:
Jan 13, 2025 01:25 PM
| Last Modified: Jan 13, 2025 10:27 AM
(360 views)
| Posted in reply to message from jthi 01-13-2025
Jarmo
Better than what I had for sure. To get the delimiter, I did this.
Lots = Concat Items(List, ", ");
Slán
SpannerHead