Feature #7884
closedImport issues from Excel or CSV file
0%
Description
Hi everybody,
I know this is not a new request on this. There are a lot of issues asking for this feature, and I have read all, but it seems that there is no official solution. I have tried rchady_redmine_importer and failed to import my issue list to Redmine. That's so disappointed for such a nice application as Redmine. So, anybody can give me a solution, because it's already been 3 years from the first request and there is still no way to do ?
Thanks,
Seri
Files
Related issues
Updated by Ryan H over 13 years ago
What are you looking for? The basics - Tracker/Status/Subject/Description?
Ryan
Se Ri wrote:
Hi everybody,
I know this is not a new request on this. There are a lot of issues asking for this feature, and I have read all, but it seems that there is no official solution. I have tried rchady_redmine_importer and failed to import my issue list to Redmine. That's so disappointed for such a nice application as Redmine. So, anybody can give me a solution, because it's already been 3 years from the first request and there is still no way to do ?
Thanks,
Seri
Updated by Se Ri over 13 years ago
Hi Ryan,
Sorry for my late reply. What I need is a tool to import my list of issues from Excel files. Not only basic fields, but also custom fields. It's nice to have this feature built-in (rather than as plugin) in future versions of Redmine.
Seri
Updated by Bernhard Wangler over 11 years ago
Hi everybody,
I would also request this feature. I have to import a whole bunch of predefined requirements and task from other tools into redmine.
What I need is a very simple CSV import for issues. Using a plug in for such a common and often used feature is too risky for me.
Thanks,
Bernhard
Updated by Maik Lindner over 11 years ago
I'ld love to see that feature also. Still no news on this? It would be great to import issues from an excel sheet. Is there any other solution?
Updated by Thomas Godard over 11 years ago
As Redmine is now, the best way to import properly issues with no knowledge of ruby nor rails is to use the import via e-mail.
I did my migration at the beginning of the week like this. I created a small JAVA script which reads my excel sheet and automatically creates and sends e-mails as Redmine needs them.
My migration took me 3 days to import my nearly 7000 issues with more than 2.5 GB of attachments (total).
Here is my JAVA code. I have translated it in English and simplified it at best. Some errors might have been created during the modification. Some improvements can be done.
To improve performance, only use this script for 200 lines at once. More lines could cause Redmine import to create issues twice.
I found some mistakes in code. Please do not consider those lines :
for (k = 1; k <= 16; k++) { CHEMINCell[k][j] = CHEMINSheet.getCell(k, j); CHEMINString[k][j] = CHEMINCell[k][j].getContents(); }
Also remove quotes at the end of the line :
String body = "description\n " + wbString[1][j] + "\nproject: " + wbString[2][j] + ... + "\nLot: " + wbString[3][j]";
Updated by Lubos Racansky about 11 years ago
What an unpleasant surprise! Doesn't redmine really support the import feature out of the box? I've found just only ruby script.
Updated by Lubos Racansky about 11 years ago
Lubos Racansky wrote:
What an unpleasant surprise! Doesn't redmine really support the import feature out of the box? I've found just only ruby script.
Or you have to write your own call of REST API
Updated by Lubos Racansky about 11 years ago
Here there is a plugin, but it seems quite outdated http://www.redmine.org/plugins/importer
Updated by Juan Fernandez about 11 years ago
Hi,
I just created a Configurable PHP CLI tool that uses the API to import CSV as Issues, with custom Fields. Other types of objects can also be added. just extending EntityPopulator\Entities\Entity with a class who´s name matches the API.
just clone it from github and run composer install to fetch dependencies.
https://github.com/juanmf/RedmineIssueImporter
Best,
Juan
Updated by Toshi MARUYAMA about 10 years ago
- Related to Feature #3647: Data Import/Export System added
Updated by Jean-Philippe Lang over 9 years ago
- Status changed from New to Closed
- Resolution set to Duplicate
Same as #950 implemented for 3.2.0.
Updated by Jean-Philippe Lang over 9 years ago
- Is duplicate of Feature #950: Import Issues from delimited/CSV file added