I looked over many examples all over the internet but still can't solve my problem. My application uses Word (and Excel) interops, version 11 (2003) to generate reports based off existing Word template files (.dot). These templates already contain excel chart objects that are pre-formatted. My application properly inserts the correct data into the data source sheet, and then sets the chart objects series formula to correctly select the correct number of rows in the sheet (it varies depending on the data).

The program correctly sets the series formula, but the problem is occasionally the series range (ex. A2 to A#) is not set properly in the end result document. Instead, it matches whatever the template's range was, even though the generated report contains new cell values added by the program. So, if my template.dot has, say

=SERIES("Title",Sheet1!$A$3:$A$27,Sheet1!$B$3:$B$27,1)

and the report only has 8 rows, the program sets the Series.Formula =

=SERIES("Title",Sheet1!$A$3:$A$11,Sheet1!$B$3:$B$11,1)

but, the final chart maintains the first series formula. The inconsistency is the real problem since it may work perfectly for me while testing, and work fine for a week, then suddenly all the reports one day will contain messed up charts. This program is in C# using .NET 3.5, with only Office 2003 as the only version of Office currently installed.

Another note, I am forced to use the old versions of the interop libraries since when I try to run the program with Version 12 (Office 2007), the program crashes whenever I try to set the Series.Formula. Any help is much appreciated.

link|improve this question
feedback

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

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.