Matrix Scrolling Headers
Oct 24, 2007Could someone describe to me how to have headers remain visible while scrolling in a matrix? I can do this in a table without a problem but can't seem to find this option for a matrix.
Could someone describe to me how to have headers remain visible while scrolling in a matrix? I can do this in a table without a problem but can't seem to find this option for a matrix.
I have set the option 'Headers should remain Visible while scrolling', in order to freeze the headers. However, on some reports, when I scroll down the report , the headers overlap each other .
Any ideas why this would happen?
Report needs to display as follows
Parent
col1,col2,col3...
val1,val2,val3
expandable section
child1
colA,colB,colC
valA,valB,valC
child2
colA...
....
repeat
Am currently implementing this as nested list controls with textboxes due to the fact that the headers for the parent and child differ. (By header I mean the column labels)
1. is there a better way of doing this as I much prefer working with tables/matrix controls?
2. how can I stop the header from scrolling - this is possible with tab/mtx controls. The alternative is to repeat the headers all down the page which wastes space and looks messy
3. How can I apply 'interactive sorting' to the parent columns?
Thanks
Hi All,
I have a project that deals with matrix or crosstab. I created an SP that looks like this in the RDL.
Month | Quarter
Channel | Revenue | Target_Revenue | Previous_Revenue | Revenue | Target_Revenue | Previous_Revenue
Channel2 | 100000 | 150000 | 1250000 | 100000 | 150000 | 12500000
I am developing a matrix report in SRS. In columns group there are several values. When report runs they apper in any order based on the first record in row group. I want colums to apeear in specific order all the time. For example the column sequence in one out put is Follwup 1, Initial , Followup 2. I want to column header to be in order of Initial, Folloup 1, Followup 2.
Can someone help?
Hi,
View 13 Replies View RelatedHi, I am creating a matrix and adding multiple row groups. The problem is that I am unable to display headers for each of these groups - can anyone help??
View 6 Replies View RelatedMy matrix column labels do not appear at all at the lowest level column grouping when viewing in IE7
All is ok when viewing the pdf, or when viewing using the preview tab.
Is this an ie7 bug?
when paging down or across in a matrix based report, it would be nice for headings (row and column) to float (ie not disappear) with the position of the report. Is this possible in RS?
View 10 Replies View Relatedwhat is considered the best practice for placing headings above dynamic row headers if you want them to float with the row headers when scrolling horizontally?
View 8 Replies View RelatedHi there,
I'm trying to implement Interactive Soring on the column headers in a matrix in a report. Is it actually possible to do this? I've read several internet posts and stories of implementing the Interactive Sorting in the upper-left corner of the matrix, but this is not what I want, I want to implement it on the column headers .
The goal I'm trying to achieve is to give the user the possibillity to click on a column header to sort the rows below in asc- or descending direction.
Please tell me if this is possible, because all my efforts have not been succesfull! If it's possible, please provide the solution to do this.
If you need more information, please don't hesitate to ask.
Thanks in advance,
Dave Ruijter
BI Consultant
i ran a preview of a matrix based report whose column headers are dates. The dates seem to be displaying in a somewhat (not completely) random order from left to right. How can I ensure that they display chronologically from left to right?
View 1 Replies View RelatedHi, this is probably a simple question but I just can't figure it out. I'm using SQL Server Reporting Services 2005 sp1.
I'm trying to design a report that displays a particular embedded image on the first page, and then a different one on every subsequent page. I.e full, fancy company logo on the first page, and a trimmed down version on every other. In Crystal, I would have simply used the Report Header and Page Header sections to achieve this - easy.
However, in SQL Reporting Services, there is only a Page Header section - therefore whatever I place in the Page Header shows on every page. Now, I know how to stop it displaying on the first page, but I don't know how to display the other image instead.
I read in a support forum that it is possible to do this by "placing report items above or below your data regions" but I can't get it to work.
Grateful for any assistance.
Matt
I am using table to display data.
I want to have group with group header.Group header needs to remain fix while scrolling down.
Greetings,
I have generated a report that requires the user to scroll down the page since it is fairly long. I want to be able to show the column headings as the report is being scrolled. Much like excel locking the column headings as you would scroll down the spreadsheet so you know what values correspond to what heading. How do I configure this report to do this? Any suggestion is greatly appreciated. Thanks!
Hi,
I have matrix which has many rows. Is there any way to keep header remain visible while scrolling?
I tried to set "Group header should remain visible while scrolling" in my columngroup property but got the error:
[rsFixedHeadersInInnerDataRegion] The matrix €˜matrix1€™ includes a table header or column with FixedHeader set to true. This is not allowed on data regions inside other data regions.
I have matrix inside a table which I set table property FixedHeaderto False but still got the same error. I can't find other places who set fixedheader properties. Any suggestion would be very appraciate!
Thanks in advance!
Hello,
I have a very wide report that uses a table control. I would like to "freeze" the two leftmost columns so that they remain visible when the user is scrolling horizontally (sideways). Is this possibe?
Thanks,
BCB
Greetings,
I have a wide report. The leftmost two columns have the FixedHeader property set true so they remain visible when I do horizontal scrolling. My problem is that the height of the 1st two rows in the fixed header section increases as soon as I scroll the report to the right. The height of the 1st two rows in the fixed header section roughly doubles while the height of the scrollable section remains the same. The upshot is that the fixed part of the report is misaligned with the scrollable part (because the rows in the two sections don't have the same height). Only the 1st two rows in the fixed header grow taller - the other rows in the fixed header retain their original height.
Has anyone seen this problem or have an idea what is happening?
Thanks,
BCB
This is the style that is generated for one of the fixed header columns:
.a6
{overflow:hidden;
HEIGHT:100%;
WIDTH:100%;
font-style:Normal;
font-family:Verdana;
font-size:8pt;
font-weight:Normal;
text-decoration:None;
direction:LTR;
unicode-bidi:Normal;
text-align:left;
writing-mode:lr-tb;
vertical-align:Top;
color:Black;
word-wrap:break-word
}
I got the following code to add a column in a matrix with a variance:
IIF(IsNothing(Previous(Sum(Fields!Amount.Value))) or Fields!year.Value=First(Fields!year.Value,"Category") or Previous(Sum(Fields!Amount.Value))=0,nothing,
(
(Fields!Amount.Value)
/Previous(sum(Fields!Amount.Value))
)
)
This code works fine, except that the first row of the matrix shows an #error
This happens with each matrix where I use this expression. A warning emerges:
rsruntimeerrorinexpression the value expression for the textrun Textbox43.Paragraphs[0].TextRuns[0]' contains an error.
Attempted to divide by zero.
The strange thing is that the part
Fields!year.Value=First(Fields!year.Value,"Category")
should prevent an error and I expect it to show 'nothing'
An screenshot of the table. (each color is a different category. Each row stands for 2013, 2014, 2015)
As you can see, all other 2013 rows show a blank cell, except the first row.
I have a Matrix table that expands to the right when choosing an amount of months to be shown. Under this matrix I have to Charts. The two charts are situated together, that is no space between them, and to the left of the report.
Now, if I choose a lot of months, say three years the matrix diagram will be huge to the right. The problem I have is that the second diagram, the one on the right, moves to the right depending on how big the report gets, and this is not good at all. The two charts are supposed to be all the way to the left.
How? Why does the right chart move?
Thanks in advanced
Kind Regards
i just clicked on Advanced mode in Column Group, and then in Row Group Side i set Fixed Data=true for first top static. I'm using local report not server report and i'm displaying that local report in Reportviewer. Now also its not working....
View 6 Replies View RelatedHello.
I hope to explain myself well - I want to make a matrix with two rows.
Lats say my data is this:
I hava a list of months and in every month I have a number of pepole and there age.
How can I show this in a matrix?
It need to be in a matrix since I need the columns to expand acording to the month but I don't know how to create two diffrent rows in my matrix.
The data should look like this:
10/06 11/06 12/06 01/07 02/07 03/7 04/07 .....
num 5 1 2 5 4 5 7 .....
age 16.1 25 18.5 14.8 25.5 20.5 18.5 .....
Thanks for any help.
I have a report thats fully functional. I just want to add a filter so that my "Visits" field only displays the Visits per day that are less then 6. When i try to filter out the matrix or the group, it tells me the datatypes are different . Something about int32. Its in a matrix, but i have seen this happen in a table too, so i guessing thats not the problem. I just want to be able to display the information for Sales Reps with less then 6 Visits. Any help, will be greatlly appreciated.
View 1 Replies View RelatedI have two separate reports, and they work fine. But I noticed that in one report, regardless of length, it will show up in the Report Manager as one page that you just scroll down through. The second report always shows up as more than one page, and you have to click through the pages to see everything. Is this some setting that I am unaware of? I have tried finding a difference between the two reports, but can't see why one would show up as a long continuous report and the other is divided into pages. Any ideas?
Thanks in advance!
Can we do this?
Adding more columns in a matrix report that don€™t
belong to the columns drilldown dimensions€¦
That is, for example, having the following report:
Product Family
Product
Country City Number of units sold
Then I
would add some ratios, that is, Units Sold/Months (sold per month) and other that
is the average for Product Family (Units Sold/Number of Product Family), for putting an example€¦ some
columns should be precalculated prior to the report so do not get into it, the
real problem I don€™t see how to solve is adding one or two columns for showing
these calculated column that doesn€™t depend on the column groups but they do
for the rows groups€¦
Any guidance
on that?
The only
way I am seeing by now is to set it as two different reports, and that is not
what my client wants€¦
Many
thanks,
Jose
I'm no dummy when it comes to this stuff but for the life of me I can't figure out how (if it is possible) to get column headers to go when exporting data. Here is the syntax I'm using:
BCP "select ATSCLAIMNUMBER, ALTERNATECLAIMNUMBER, LNAME , FNAME, MNAME, convert(varchar(10),LOSSDATE,101), convert(varchar(10),ERNOTIFIEDDATE,101), convert(varchar(10),CLOSINGDATE,101), STATUSCODE, INDPAID,MEDPAID,REHABPAID,EXPPAID,LEGALPAID,TOTALP AID,INDFUTURERES,MEDFUTURERES,REHABFUTURERES,EXPFU TURERES,LEGALFUTURERES,TOTALFUTURERES,EXCESSRECOVE RY1,EXCESSRECOVERY2,EXCESSRECOVERY3,EXCESSRECOVERY 4,EXCESSRECOVERY5,EXCESSRECOVERY,OTHERRECOVERY1,OT HERRECOVERY2,OTHERRECOVERY3,OTHERRECOVERY4,OTHERRE COVERY5,OTHERRECOVERY FROM ##MMAACTUARY" queryout C:mma03182004.TXT /c /t, /r /U demo /P demo /S ATSDEVATS2K
It spits out the file fine. This is all built with dynamic SQL and needs to email the file which is does perfectly. My only problem is that there are no headers which I can't have. Any suggestions?
Is there any way to retrieve the column header name along with your query data?
View 2 Replies View RelatedDoes anyone know how to incorporate header and trailer info in the text output from a DTS task. The SQL I'm using in the task works well when outputting to a text file on the server. However, when trying to incorporate header and trailer info the process fails. I tried doing it using SQL but the DTS transformation process is looking for fields to transform when I'm trying to output a 3 line header and 2 line trailer with the output rows in between. Has anyone done this before? Your help would be greatly asppreciated.
Here is an example of the SQL that fails:
*** Trying to get header info here ***
select 'Header'
select 'filename.txt'
select convert(char(11),getdate(),101)
*** Main SQL runs here ***
select
a.field1,
a.field2,
...
from tblA a JOIN tblB b ON b.someid = a.someid
JOIN tblC c ON c.someid = a.someid
where a.someval >= '2003'
*** Trying to get trailer info here ***
select 'Trailer'
select ''
select count(id) FROM tblA
I wanted to show header titles for each group of accounts. Ho would I be able to do that. The query that I have right now is:
select * from apcopah
where substring(ap_control_acct, 1, 4) = '1624'
and date_vendor_inv >= '2001-08-01'
or substring(ap_control_acct, 1, 4) = '1631'
and date_vendor_inv >= '2001-08-01'
or substring(ap_control_acct, 1, 4) = '1632'
and date_vendor_inv >= '2001-08-01'
I would like it to look like this:
Utilities
Ap_control_acct date_vendor_inv
1624 2001-10-01
1624 2001-12-01
Audit Fees
Ap_control_acct date_vendor_inv
1631 2002-09-01
1631 2002-10-01
Is this possible?
Hi all,
I am sure this is an easy question but I cant work it out.
I need to output the results of a table to file. I have set up a job to do this, as it needs to be updated every night.
I just do a select * from table
Howerver I dont want the coloum names at the top or the -------'s or the (1) rows bla bla
Bit.
Any ideas?
Dave
Dave Dunckley says there is a law for the rich and a law for the poor and a law for
Dirty Davey.
How do I put information only at the top of a page and have it change whenever a group occurs.
I want to do something like this. Have this on the top of every page:
Country: current country
State: current state
City: current city
There is a group on country, state and city. Whenever city changes the next page will display a new city. Whenever state changes the next page will display the new state in the header.
I have already put Country, State, and City into their own group headers. However, if either of them change in the middle of the page then the group header repeats. I have group header repeat on so I can see it on each page. If I choose the Page break at start then it breaks but I don't want it to break. I want it to run on the same page if it passes a group and then have the next page display relevant information for the group.
Putting it in the table header works as far as keeping them all on the top of the page but it doesn't change when a grouping ends.
Please assist me in anyway you can.
Thanks,
Sarah
I€™m trying to find a way to export all data from a table in to a csv file with a header. I€™m not concerned at this point with dynamic headers (that would be nice but at this point I€™m not picky). I would just like to find a way to programmatically drop a table to a csv file.
use tempdb
go
create view vw_csvexport
as
select
'"' + convert(varchar(50), Name) + '"',
'"' + convert(varchar(50), ID) + '"'
from TestHeaderTable
union all
SELECT top 100 percent
Name = '"' + name + '"',
ID = '"' + convert(varchar(50), ID) + '"'
FROM TestDataTable
go
DECLARE @bcpCommand varchar(2000)
SET @bcpCommand = 'bcp tempdb..vw_export out
c: est002.txt -c -T -S SERVER'
EXEC master..xp_cmdshell @bcpCommand
I get this error when I run this query
Create View or Function failed because no column name was specified for column 1.
If I€™m going about this the completely wrong direction let me know so I can get heading the right direction to get this done.
Hi,
I am having a matrix element in my report with two row groups and one column group.
In column group i have the month names from jan to dec. I want the headers to be sorted on these month names.
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sept
Oct
Nov
Dec
RG1
RG2
X
X
X
X
X
X
X
X
X
X
X
X
RG2
X
X
X
X
X
X
X
X
X
X
X
X
RG1
RG2
X
X
X
X
X
X
X
X
X
X
X
X
RG2
X
X
X
X
X
X
X
X
X
X
X
X
RG1
RG2
X
X
X
X
X
X
X
X
X
X
X
X
RG2
X
X
X
X
X
X
X
X
X
X
X
X
RG1
RG2
X
X
X
X
X
X
X
X
X
X
X
X
RG2
X
X
X
X
X
X
X
X
X
X
X
X
RG1
RG2
X
X
X
X
X
X
X
X
X
X
X
X
Here X is the measure. I want if the user click on Jan the measure values should be sorted in the Jan column and similarly for all the months.
How can i achieve this?
Regds,
Rohit