Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I need to split the following table into a more readable format in the load statement.
From this
Area | Post Sectors |
A | ['PE33 0', 'PE33 9', 'PE34 3'] |
B | ['NG13 0', 'NG13 9', 'NG23 5', 'NG24 4'] |
To this
Area | Post Sectors |
A | PE33 0 |
A | PE33 9 |
A | PE34 3 |
B | NG13 0 |
B | NG13 9 |
B | NG23 5 |
B | NG24 4 |
Any ideas please?
Hi, load the field like this.
Trim(PurgeChar(SubField([Post Sectors],','),'[]''')) as [Post Sectors]
Hi, load the field like this.
Trim(PurgeChar(SubField([Post Sectors],','),'[]''')) as [Post Sectors]
Spot on thx, and really appreciate the quick response