Viewing 15 posts - 16 through 30 (of 33 total)
try http://yourip/reports instead of /reportserver
September 28, 2009 at 6:45 am
Excel 2003 hat a max dimension of 65'335 Rows x 256 columns
In excel 2007 this has greatly increased, but still not to infinity. I guess that just nobody has reached...
September 28, 2009 at 6:38 am
Hi Eddy
Good point, i missed the space in the Check clause. 🙂
best is to go to the field and drag the action you want performed first,
cause the most sum() i...
September 28, 2009 at 12:49 am
From your reply I gather that one or the other solution worked out for you.
Make sure that the report area doesn't have a blank space below the matrix in design...
September 28, 2009 at 12:41 am
If you want to hide the complete row, then conditionally set the visibility of that row using something like "iif(sum(datacolumn)=0,false,true) "
If its just the 0 that you want to disappear,...
September 25, 2009 at 2:36 am
Hi Sing4you
How about grouping by all fields except comment?
Please post some sample-data.
September 24, 2009 at 7:02 am
Hi Nemo,
if I understand you right, then the AccountCode can hold multiple AccountNames. In matrix, you can add groupings on both Columns and Rows.
Could you provide some Sample-data?
September 24, 2009 at 6:45 am
Hi Keywest,
From what I know the answer is No.
I've ran into the same problem some time ago and ended up writing a custom web-app to handle that.
September 24, 2009 at 6:38 am
Hi Nemo,
Given the Fact that your expression displays 0 when there is no data shows, that the IIF-Clause works. Therefore the error must be in the Sum-Clause.
My first suggestion would...
September 24, 2009 at 6:35 am
You can also add it by yourself. Imagine that you have an unsorted dataset that consists of two columns.
the Customer Name and the date of the orders that customer has...
August 6, 2009 at 1:49 am
Always bear in mind, that when you do a first(), SSRS will show the first record that comes to the Row. Be sure that you know exactly which record that...
August 5, 2009 at 12:47 am
paula (8/4/2009)
=iif((Fields!PERIODID.Value=1) and (Fields!Year1.Value = Parameters!Year.Value),(sum(Fields!Cost_Code_Actual_Cost.Value,"Cost_Element_Group")),"0")
If I read your expression correctly, you have just one decision to make with two criteria. For that, the IIF-Function is just fine. But like...
August 5, 2009 at 12:39 am
Within Reporting Services you can use Switch instead of Case. Functionality is pretty much the same.
August 4, 2009 at 12:09 am
you could create a string-parameter that fills in to the Report.Downside: you need to run the report twice.
or
you could just leave a placeholder and take the detour through excel...
Both...
August 3, 2009 at 5:52 am
Hi Paula,
In the Group-Row there are multiple Fields, all that are contained in the details of that group to be exact. The IIF-Clause gets confused because it doesn't know which...
August 3, 2009 at 5:31 am
Viewing 15 posts - 16 through 30 (of 33 total)