Home Forums Reporting Services Reporting Services 2008 Development Creating a report to list totals from a table that doesn't require a re-design whenever a new field is added RE: Creating a report to list totals from a table that doesn't require a re-design whenever a new field is added

  • I think I see what you're getting at. You could create a temp table with all the column names in it, using a select from sys.columns. Then update that table with the column counts that you want. From there it's a select from the temp table and build your report as usual.