Hi All,
I need to modify .CSV file that is imported from XDOC application.
Earlier I had made the modifications using Ultraedit software. This time, I want to use MS Excel instead of Ultraedit, as this is more convenient. However, when I edit and re-import the updated file it is not accepted by the application.
To find if any thing is incorrect, I tried opening the file in Ultraedit and found that few extra comma’s are included with the usage of MS Excel.
The following is the code snippet with extra comma symbols:
Structure Report (only the toplevel) ,,,
ParentElement,,,
Name:,fad_rnp,,
Id:,0900d80580761f40,,
Title:,Radio network performance,,
External ID:,0900d805805a59e4,,
Children,,,
Position,Name,Id,Binding
1,DN9814062,0900d80580589d50,fixed
2,DN9814132,0900d80580589d6e,fixed
3,DN9814168,0900d8058075a2a6,fixed
4,DN9814129,0900d805807d5741,fixed
5,DN9814214,0900d8058058d726,fixed
6,DN9814202,0900d8058058f01a,fixed
Whereas, the correct format of the file is:
sep=;
Structure Report (only the toplevel) ;
;
;
ParentElement;
Name:;fad_rnp;
Id:;0900d80580761f40;
Title:;Radio network performance;
External ID:;0900d805805a59e4;
;
Children;
Position;Name;Id;Binding;
1 ;DN9814062;0900d8058076373f;CURRENT
2 ;DN9814132;0900d805807349c6;CURRENT
3 ;DN9814168;0900d8058075a2a6;CURRENT
4 ;DN9814129;0900d805806a75b3;CURRENT
5 ;DN9814214;0900d8058058d726;CURRENT
6 ;DN9814202;0900d8058058f01a;CURRENT