Hello all,
I have the following code to create an "Info" collection with a column called "AttributesNew" :
The issue I'm having is under my "AttributesNew" column, the text it results in has a "," in the beginning and end of the string of text. Here's an example of an output it'd give:
,one,two,three,four,five,
I'd like to remove the first both the first and last comma of that string of text so that the output is this:
one,two,three,four,five
How would I modify my existing code to account for this functionality? I've messed around with using the Left() and Len() function but no luck as of yet.
Thank you!
Solved! Go to Solution.
Your code looks like it is adding those commas for you - see circled expressions. Remove those and those extra commas should disappear:
Your code looks like it is adding those commas for you - see circled expressions. Remove those and those extra commas should disappear:
Sometimes I look at code so long that I don't see the extreme obvious lol. Thank you for your help!
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
185 | |
55 | |
43 | |
35 | |
33 |
User | Count |
---|---|
263 | |
78 | |
75 | |
71 | |
67 |