I used transaction to combine 2 rows of raw fields: raw 4015_ABCD, Start, 8/11/2020 5:37:10 PM, 12345 4015_ABCD, Complete, 8/11/2020 5:37:30 PM, 12345 4015_ABCD, Start, 8/12/2020 10:23:34 AM, 12345 1113_EFGH, Start, 8/12/2020 12:00:00 PM, 67890 1113_EFGH, Complete, 8/12/2020 1:00:00 PM, 67890 Is there a simple way to split the raw field into "raw1" and "raw2" as below (preferably without using rex)? raw raw1 raw2 4015_ABCD, Start, 8/11/2020 5:37:10 PM, 12345 4015_ABCD, Complete, 8/11/2020 5:37:30 PM, 12345 4015_ABCD, Start, 8/11/2020 5:37:10 PM, 12345 4015_ABCD, Complete, 8/11/2020 5:37:30 PM, 12345 4015_ABCD, Start, 8/12/2020 10:23:34 AM, 12345 4015_ABCD, Start, 8/12/2020 10:23:34 AM, 12345 1113_EFGH, Start, 8/12/2020 12:00:00 PM, 67890 1113_EFGH, Complete, 8/12/2020 1:00:00 PM, 67890 1113_EFGH, Start, 8/12/2020 12:00:00 PM, 67890 1113_EFGH, Complete, 8/12/2020 1:00:00 PM, 67890
... View more