Hello,
I have a label with its Text property like
Char(34) & Concat(ComboBox1.SelectedItems, displayName & Char(34) & Char(10) & Char(34))
This gives me a series of selected items names on new lines, surrounded in quotes, but I have a trailing quote I don't want:
"selection 1"
"selection 2"
"
How can I get rid of that last bit of text? The Trim fuction is only for spaces by the look of it..
Solved! Go to Solution.
Solved it!
Concat(ComboBox1.SelectedItems, Char(34) & Name & Char(34) & Char(10))
Solved it!
Concat(ComboBox1.SelectedItems, Char(34) & Name & Char(34) & Char(10))
User | Count |
---|---|
140 | |
132 | |
79 | |
75 | |
74 |
User | Count |
---|---|
210 | |
198 | |
69 | |
65 | |
55 |