Hi Stefan,
You can use ""Utility - Collection Manipulation - Append Rows to collection"", but need to do perform few things before.
1. Create a variable of collection type - ""To copy row Collection""
2. Appned your selected row into this collectio...
Does the date column contain date from a range of dates? or from current month? If it is from random month, it is impossible to differentiate cases where 9/6/2018 and 6/9/2018. If they are from the same month, we can use an apporach to solve that.
If replacing the space also doens't work, then it must be checked against the ASCII equivalent of \t.
Tyr the following approach:
string strWithTabs = ""here is a string\twith a tab"";
char tab = '\u0009';
String line = strWithTabs.Replace(t...
There must be something wrong with the way you are assigning back the data in the collection. Collections are more like list, you need to clone it. If not, they will update the copied list.
Attach your workflow to better understand and resolve the i...