How do I dynamically link specific elements in Excel to Word? -


i need dynamically link specific elements in ms excel word document in hierarchical fashion. ms excel data source, , ideally update ms word per example.

initial thoughts: use ms word's dynamic linking (though seems basic purpose), use powerbi (help here great), write script iterate through , spit out/update word doc (though add significant maintence challenges without script on machine).

e.g.

initial excel spreadsheet:

+------+-------+ | cola | colb  | +------+-------+ |    | text1 | | b    | text2 | | c    | text3 | | c    | text4 | | b    | text5 | | c    | text6 | |    | text7 | | b    | text8 | | ...  | ...   | +------+-------+ 

to maintained in word doc like:

 1. : text1     1. b : text2        1. c : text3        2. c : text4     2. b : text5        1. c : text6  2. : text7     1. b : text8 

i appreciate suggestion best way this.


Comments

Popular posts from this blog

How to understand 2 main() functions after using uftrace to profile the C++ program? -

c# - Update a combobox from a presenter (MVP) -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -