TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: report system, Excel or HTML?

5 pointsby jacktangover 15 years ago
Hi Developers &#38; Designers<p>I am a Rubist and now working on one report system, and decided to using excel(and template) to build the report, I chose the excel template because of two:<p>1. let the end user design the report by excel 2. let end user print the report in excel<p>but the problem is that it is hard to deal with the report with huge data, and now I want to choose raw HTML, the long report can be easy handled by adding pagination. And do you know any clean HTML report available on www?<p>Thanks!

5 comments

jwallzover 15 years ago
You need to do both. dump the report to a page in html with pagination and have an export to excel button. For file export do it as tab delimited with a .xls extension.
nailerover 15 years ago
What specifically is the problem? Are you likely to have more than 65K rows?<p>If not, Python's xlwt and xlrd modules handle support for native Excel in a very simple, OO, pythonic way, without any scary Windows or COM shit. I regularly generate and parse pretty big Excel files most days so I'd be happy to answer any questions.
clscottover 15 years ago
If you render the report as an HTML document and serve it with a mime-type of application/vnd.ms-excel the users system will prompt them open it in excel.<p>Excel will parse it with all of the nice formatting and everything!
评论 #1004943 未加载
yannisover 15 years ago
For reports (people like to print them), I normally use<p>(a) pdf (b) HTML<p>In that order!<p>If anyone needs excel I give them comma delimited for import!
评论 #1004697 未加载
wendroidover 15 years ago
Like choosing which bullet to get shot by.