Viewing 15 posts - 16 through 30 (of 242 total)
It should work in SSRS 2008. I am not sure about SSRS 2005. If that is the case then insert a row (Below Group) and use above expressions.
But, did you...
June 11, 2010 at 1:06 am
dbowlin (6/9/2010)
Using a function as checkai suggests is pretty easy.
Yeah... and using code function is the BEST option for this problem.
June 11, 2010 at 12:43 am
Use below expression in the last rows:
Total Quantity with Excise Duty = 0
=SUM(IIF(Fields!ExciseDuty.Value = 0,Fields!Quantity.Value,0))
Total Quantity with Excise Duty <> 0
=SUM(IIF(Fields!ExciseDuty.Value <> 0,Fields!Quantity.Value,0))
June 11, 2010 at 12:27 am
Here you go:
Select Row Group --> Click Sorting --> Click Add button and write following expression:
=IIF(Fields!Counselor.Value = "No Counselor"," ",Fields!Counselor.Value)
June 10, 2010 at 9:58 pm
Steve Cullen (6/9/2010)
The good new is that it's easy to make SQL write your queries for...
June 9, 2010 at 4:14 pm
I can answer your query but I need to understand your question correctly.
Could you explain it with example/snapshot?
June 9, 2010 at 4:04 pm
Did you check CanGrow properties?
Also try to place matrix control in a rectangle and try again.
June 7, 2010 at 5:31 pm
I think you can create a Stored Procedure with Input Parameter @CurrentDate. You can filter records based on this parameter.
While calling this Procedure in SSRS report, you can pass Default...
June 7, 2010 at 5:26 pm
I guess your OR conditions should be placed inside parenthesis "()"
But I dont understand why are you replacing characters from both left and right side since its same in both...
May 27, 2010 at 5:16 pm
Here is the link what you exactly needed:
May 24, 2010 at 12:20 am
I dont think it is possible without Script (C# or VB.NET) language.
However you can create a staging table and load the data into that table. Once you get the data,...
May 16, 2010 at 1:32 am
You can follow below steps:
1. Create a new Role and add required users in Membership tab of Edit Role wizard.
2. Give Read Access to Data Sources and Cubes.
3. Create Excel...
November 30, 2009 at 12:29 am
It works fine for SSAS as well.
You can add connection string variable in package configuration file. Connection Manager will pick whatever the Server name defined in config file.
I have more...
November 27, 2009 at 4:01 am
Viewing 15 posts - 16 through 30 (of 242 total)