Viewing 15 posts - 16 through 30 (of 113 total)
When creating a group you have a option of selecting, whether you need a header and footer for that group.
If the groups are already created then select any textbox in...
January 25, 2013 at 12:23 am
Here, I need to import Employee table from server S1 to S2. Difference is that Employee table on S2 wont allow Null values in EmpName column. (There are other constraints...
December 17, 2012 at 2:55 am
It's not possible in SSRS.
October 30, 2012 at 11:08 am
I think "0.00" did provide some part of the solution but you need to look for NULL's and handle them which is giving you the error, i guess.
Use the function...
October 30, 2012 at 4:15 am
You can set the parameter properties to 'Allow NULL' and also handle it accordingly on the query side. For example:
Where (customer = @Customer or @Customer is NULL)
OR
Where (customer IN (@Customer)...
October 25, 2012 at 12:46 am
You may need to convert the values into numbers before adding them up.
=SUM(CAST(ReportItems!Textbox15.Value AS INT) )
October 24, 2012 at 6:03 am
It is possible. For more information about the tool to convert SSRS 2008 report to 2005 version, please visit (downloads section) : http://www.applybi.com
October 22, 2012 at 7:46 am
It is possible. For more information about the tool to convert SSRS 2008 report to 2005 version, please visit : www.applybi.com
October 22, 2012 at 7:38 am
good to hear that. 🙂
October 19, 2012 at 11:35 am
Never heard of this kind of problem.
Maybe problem with the installation of SSRS
October 19, 2012 at 12:02 am
you can a where clause in the sql query like:
where location like '%LK%'
October 18, 2012 at 11:48 pm
Set the CanGrow value to true in the properties section of the textbox.
By default, it is true.
October 17, 2012 at 2:56 am
You can use the following expression to get the sum of percentages:
=REPORTITEMS!Textbox15.Value
where 'Textbox15' is the textbox in which you are showing the percentage.
you have to get the value of '5'...
October 17, 2012 at 12:45 am
ReportItems!Textbox21.Value="4.2.PP" or "4.3.PE" or "4.4.S" and ReportItems!Textbox23.Value="",1
You got to change the above line to :
(ReportItems!Textbox21.Value="4.2.PP" or ReportItems!Textbox21.Value="4.3.PE" or ReportItems!Textbox21.Value="4.4.S") and ReportItems!Textbox23.Value="",1
October 16, 2012 at 4:06 am
Viewing 15 posts - 16 through 30 (of 113 total)