I've been given an odd file out of 0365 that seems to be delimited by : and , with quotations. I want to get these into separate columns and values.
An example below:
CreationDate UserID AuditData
2020-05-04 User1 {"Id":"4ccd2","RecordType":20,"CreationTime":"2020-05-04T10:24:44"}
2020-04-14 User2 {"Id":"4def5","RecordType":18,"CreationTime":"2020-04-14T10:24:44"}
2020-03-29 User3 {"Id":"4zxc2","RecordType":07,"CreationTime":"2020-03-29T10:24:44"}
Goal: Break out the column AuditData into: 1) Id and value 2) RecordType and value 3) CreationTime and value
etc etc
I've been trying a couple things with separate() but have been unsuccessful so far. Thanks!