I am writing a DLL in .NET (C#) which can be loaded as a plugin in Excel. The DLL will provide many functions which can be used as formulas in Excel, to lookup certain values from the database of an external application.
For each of these formula functions, the DLL will need to access the database, so there will be too many database calls. For example, if Formula 1 is used in 10 cells, and a Formula 2 is used in 20 cells, there will be 30 calls to the database
Is there a way I can make a single call for each formula to the database? Any implementation ideas?
Thanks.
EDIT:
Basically I am trying to write a generic DLL (Excel Plugin) which can be used by any user using Excel and a specific 3rd party accounting software. Each formula which the user inserts into Excel, will query the 3rd party app database and return a specific value, depending on the parameters passed.
For example, user can use a formula to query the ledger balance for a particular ledger, or use another formula to query the stock balance of a SKU, etc. I will have different categories of formulas, like ledger based formulas, SKU based formulas, etc. User can design side by side comparison reports, to show ledger balances for Quarter 1 and Quarter 2 in separate columns, etc.
This plugin is intended to act like a Report Designer (without any wizard, only formula-based), where user can design own reports in Excel, format them the way they want, and pull values from accounting software into any cell they want.
However, instead of evaluating each formula by reading from database every time, I wanted to first design a "formula exeuction plan", so I could club multiple calls to the database into a single call for a single formula, where I could pass all the parameters the user has specified in all instances of that formula in the Excel sheet.
Else, the Excel sheet will take a really long time to evaluate the formulas, making it impractical. I anticipate around 100 formulas on an average in a report.