You cannot post messages because only members can post, and you are not currently a member.
Description:
This is the discussion list for Ruby Reports (http://rubyreports.org), a simple reporting framework for Ruby.
Any topic remotely related to the software is welcome, so feel free to share what's on your mind!
|
|
|
Combining data from two different queries
|
| |
On our website we track visits and signups for each of our campaigns. Visit is a unique visit to the site and a visit is associated with a signup if that user signs up. I created a table for visits: ...s,campaigns c where s.campaign_id=c.id and s.user_id is not null group by code" +---------------------+... more »
|
|
Problem with multiple grouping
|
| |
Hi,
I'm trying to create a report with user activity across the last few
months. I'd like to create a table where on X axis (table header)
there'd be month names and on Y axis (first table cell in every row)
would be user name.
Here's what I got right now: [link].
The problem is that I don't really know how to diplay all months in... more »
|
|
Ruport and WillPaginate
|
| |
Hello all,
I'm trying to use ruport and pagination and right now I do the
following:
table = model.report_table(:all, :only => columns, :conditions =>
filters, :offset => current_offset)
n_records = table.size
per_page = 20
...current_page = 1
if(params["page"] != nil)
current_page = params["page"].to_i... more »
|
|
More than one source, editing openxml files possible?
|
| |
Hey Group members,
I have several xml files as a input and the entire inputstream is like
10 MB. I don't know if I really have all data when I create the
openxml file. Can I somehow create a openxml out of an openxml
template and fill the data later in when I have it?
I have seen that there are different data structures, such as tables,... more »
|
|
Gem install error
|
| |
Hi all,
I'm new to the group, and new to ruport also, so bear with be if I ask
some very obvious questions.
I'm trying to install ruport on my development environment but the gen
install is erroring:
gem install ruport
ERROR: While executing gem ... (ArgumentError)
string contains null byte... more »
|
|
Ruport Performance
|
| |
Hi everyone,
We are currently looking into using Ruby Reports for our company's
user behavior analysis. We have tens of millions of user logs in our
database. We would be using Ruby Reports for grouping and generating
tables and/or graphs. I am wondering has anyone had experience with
large volumne of data? Will there be a performance issue? Is there a... more »
|
|
Newbie looks for other newbie
|
| |
Hello Ruporters,
I am new to Ruby/Ruports but I think I got a task where Ruport could
be the solution. Unfortunately time is running (as usual) and the
client told me that if I can't succeed they will buy CrystalReports.
Not a big deal, but if there are other beginners like me, why not we
try it together?... more »
|
|
Two table report problem
|
| |
Hi there
I have implemented a report based on the Bibliophile example - it
works fine so Thanks!!
I even have various search options in the app.
My problem is that I have difficulty coming to grips with 'variables'
and their scope!!
Like the Bibliophile example, my report has more than one table.... more »
|
|
Pretty tables in text formatters?...
|
| |
Hi,
For a series of reports I'm creating I'm using a separate report
controller, Report class and formatter for the report stages derived
from Ruport::Formatter::Text. The source of the report data is
ActiveRecord and AAR, but all this is used outside of Rails.
Some of the formatter stages need to write descriptive text and a few... more »
|
|
|