I have .xml file like below. I want to Import to SAS and create SAS dataset from it.
-
-
1
1
2
B
534941
Section-1
44624
0.4462
1
1
2
-
2
1
2
B
534941
Section-1
46604
0.466
2
2
6
-
3
1
2
B
534941
Section-1
10264
0.1026
1
1
3
-
4
1
1
A
534941
Section-1
93289
0.9329
2
2
6
-
5
1
1
A
534941
Section-1
43915
0.4391
1
1
3
-
6
1
2
B
534941
Section-1
32549
0.3255
2
2
6
-
7
1
1
A
534941
Section-1
80389
0.8039
1
1
3
-
8
1
1
A
534941
Section-1
99830
0.9983
1
1
1
-
9
1
2
B
534941
Section-1
11299
0.113
2
2
4
-
10
1
2
B
534941
Section-1
35463
0.3546
1
1
1
-
11
1
1
A
534941
Section-1
65725
0.6573
2
2
5
-
12
1
1
A
534941
Section-1
63333
0.6333
1
1
2
-
13
1
1
A
534941
Section-1
38953
0.3895
2
2
5
-
14
1
2
B
534941
Section-1
34351
0.3435
1
1
2
-
15
1
2
B
534941
Section-1
63197
0.632
2
2
5
-
16
1
1
A
534941
Section-1
86315
0.8632
1
1
2
-
17
1
2
B
534941
Section-1
16371
0.1637
2
2
5
-
18
1
1
A
534941
Section-1
5537
0.0554
1
1
2
-
19
1
1
A
534941
Section-1
73672
0.7367
2
2
6
-
20
1
1
A
534941
Section-1
8159
0.0816
1
1
3
-
21
1
1
A
534941
Section-1
71549
0.7155
2
2
6
-
22
1
2
B
534941
Section-1
50638
0.5064
1
1
3
-
23
1
2
B
534941
Section-1
70114
0.7011
2
2
6
-
24
1
1
A
534941
Section-1
46666
0.4667
2
2
4
-
25
1
2
B
534941
Section-1
97431
0.9743
1
1
1
-
26
1
2
B
534941
Section-1
48908
0.4891
2
2
4
-
27
1
2
B
534941
Section-1
46351
0.4635
1
1
1
-
28
1
1
A
534941
Section-1
38919
0.3892
2
2
5
can anyone help.
I tried like this.
libname myxml xml 'C:\kk\randlist.xml';\
DATA randlist;
SET myxml.randlist;
RUN;
But it shows error in log htat myxml.randlist.data doesnot exist.
... View more