The Indian Income Tax department has been very friendly and proactive and provided income tax payers in India to file electronic returns. The returns can be filed using the respective excel spreadsheet files from https://incometaxindiaefiling.gov.in/portal/index.jsp.
The ITR returns files are like actually xls spreadsheets that you need to open and fill in your tax figures. The files generate an XML file that is to be uploaded onto the income tax website at https://incometaxindiaefiling.gov.in/portal/index.jsp.
Many people would like to know what data was generated by the xls file. Since it is all in XML, you can open it in a text editor like Wordpad and have a look at it’s contents. All key fields are surrounded in tags. Therefore, the file will not readily convert in tools like LibreOffice, OpenOffice, MS Office where XML is not fully supported. But all is not lost. You can use XML to CSV converters to generate a CSV file and then open the CSV file in your favourite Office Suite. Below is the method to do this:
- Download the XML2CSV converter from http://xml2csv-conv.googlecode.com/files/xml2csv-conv-0.0.1.zip. It is a Java program, so should work on any operating system.
- Next, unzip it to your computer (preferably, in it’s own folder).
- Copy the XML file generated by the Income Tax xls return files like ITR2*.xls into the xml2csv-conv folder.
- At the command prompt like C:> or $ based on your operating system, type the command:
java -jar xml2csv-conv.jar MNOPQ1234R_ITR2_2012.xml myfile.csv  <enter>
where
MNOPQ1234R_ITR2_2012.xml is the income tax return XML file generated by the income tax ITR spreadsheets
myfile.csv is the output csv file. - You will now be able to open myfile.csv in Excel, LibreOffice or any Office Suite of your choice.
As a pre-requisite, you should have the Java Runtime installed on your computer. If it is not installed, you will know when you run the command at 4 above.