How to merge Excel data with an Excel template to output Excel workbooks?

I have a spreadsheet workbook with data per raws:

+-----------+------------+-------------+
| shapes | property 1| property 2 |
*-----------+------------+-------------+
| S1 + 20 | glop |
+-----------+------------+-------------*
| S2 + 10 | rrrr |
+-----------+------------+-------------*

and a template workbook like this one in pseudocode:

+-----------+------------+-------------+
| shape | Name | property 2 |
*-----------+------------+-------------+
| + <shapes> | <property 2>|
+-----------+------------+-------------*

and I want to produce as many workbooks as data in rows like this:

workbook 1:

+-----------+------------+-------------+
| shape | Name | property 2 |
*-----------+------------+-------------+
| + S1 | glop |
+-----------+------------+-------------*

workbook 2:

+-----------+------------+-------------+
| shape | Name | property 2 |
*-----------+------------+-------------+
| + S2 | rrrr |
+-----------+------------+-------------*

How can I do it please under Excel 2010 without POWER QUERY and possibly without VBA? Actually, my need is like a mailing from workbook contact that generates workbooks instead of sending emails.

5 Reset to default

Know someone who can answer? Share a link to this question via email, Twitter, or Facebook.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like