Viewing data differently

Programming, for all ages and all languages.
Post Reply
User avatar
Neo
Member
Member
Posts: 842
Joined: Wed Oct 18, 2006 9:01 am

Viewing data differently

Post by Neo »

I was thinking of creating a web interface where team members could fill up their weekly reports online (instead of the individual by-mail submissions).
I could store this data in a database and then the whoever is interested could have a look at the data in whatever form they want. This would be a lot better than the "mail" method and it would help different views of the same data.
I was wondering if this data from the database could be used to create spreadsheets/reports customized to fit different peoples views.
If I were to use MS-SQL would that help in easily creating those docs in MS-Excel/ MS-Word formats?
Even if you have some general comments on this please let me know.
Only Human
AR

Re:Viewing data differently

Post by AR »

I have no experience in this but anyway...

MS-SQL Server shouldn't make it any easier/harder, it only maintains the database. You can use Access to generate reports, I don't remember if you export reports to Word, you should be able to. You can use COM Automation to create a program that opens word/excel in the background and generates the document/spreadsheet if you want, this is even possible with scripting in the webpage:

Code: Select all

<script language="VBScript">
Set Word = CreateObject("Word.Application")
Word.Visible = True
</script>
(Naturally only works in Internet Explorer)
User avatar
Neo
Member
Member
Posts: 842
Joined: Wed Oct 18, 2006 9:01 am

Re:Viewing data differently

Post by Neo »

Hmm... never knew you could do that.
I should try that out sometime soon and see how it goes.
Only Human
User avatar
Solar
Member
Member
Posts: 7615
Joined: Thu Nov 16, 2006 12:01 pm
Location: Germany
Contact:

Re:Viewing data differently

Post by Solar »

Note that you can use Access to generate reports on any ODBC data source AFAICR, basically making this independent of the database used.
Every good solution is obvious once you've found it.
Post Reply