Thanks for your replies... for waht is's worth, here's what we're trying to do:
Accounting data is in a SQL-based accounting package. Client has financial statements already formatted in Excel that they are damant about using.
We want to update Excel with current data from the database. The spreadsheets have totaling formulas, comments, underlines, etc. scattered throughout the spreadsheet... therefore, we can't just do a "data dump" to Excel.
Each cell represents a different grouping of account numbers and date ranges (i.e columns for Jan, Feb, Mar).
We HAVE a way we can use account numbers on the left and date ranges on the top to use as "substitutes" in our SQL commands... (i.e select amount from transactions where account_number=$a$3 and trandate >= $b$1 and trandate <= $b$2 group by account_number)... but this gets a little more complicated if there are multiple accounts that need to be grouped... particularly if they are not in a "from-thru" range.
We're just trying to get a little feedback on if, worst case, you think we CAN enter a separate command in each cell...