EasyPopulate doesn't do this.
You could compile a SQL query that looks like this:-
Code:
INSERT INTO `manufacturers` (`manufacturers_id`, `manufacturers_name`, `manufacturers_image`, `date_added`, `last_modified`) VALUES
(1, 'Casio', 'manufacturers/casio.jpg', '2008-05-20 09:00:00', '2008-05-20 09:00:00'),
(2, 'Hitachi', 'manufacturers/casio.jpg', '2008-05-20 09:00:00', '2008-05-20 09:00:00'),
(3, 'JVC','manufacturers/casio.jpg', '2008-05-20 09:00:00', '2008-05-20 09:00:00'),
(4, 'Kenwood', 'manufacturers/casio.jpg', '2008-05-20 09:00:00', '2008-05-20 09:00:00');
My example shows just 4 entries, but this should not take long if you use Excel and make use of it's capacity to:-
add an incremental number in a cell (for the Manufacturer's ID)
CONCATENATE text in fields (if needed, will help create image file path, AND bring all the text together for each reference)
EXPORT file as TXT file
With Excel, a lot of the data is duplicated (see my dates), so use excel to copy and paste.
With 800 manufacturers, this method should take about 30 minutes...