We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 829e3cf commit c53c594Copy full SHA for c53c594
CS/Scripts/Ribbon.cs
@@ -934,7 +934,7 @@ public void SeparateValues()
934
for (int j = 1; j <= countValues; j++) // by value
935
{
936
tbl.ListRows.Add(i);
937
- tbl.Range.Rows[i + 1].Value = tbl.Range.Rows[i].Value;
+ tbl.Range.Rows[i + 1].Value = tbl.Range.Rows[i].Value.Trim();
938
tbl.Range.Cells[i + 1, columnIndex].Value2 = metadata[j - 1].Trim(); // get the next value in the string
939
}
940
tbl.Range.Cells[i, columnIndex].Value2 = metadata[countValues].Trim(); // reset the first row value
0 commit comments