Viewing 15 posts - 1,336 through 1,350 (of 2,278 total)
If you do not want it in the tablix, you probably have to add a scope to the expression.
=COUNT(FieldtoCount, "scope") where scope would probably be either the tablix name or...
March 29, 2011 at 7:10 am
Are you using a stored procedure? If so, you may want to investigate Parameter Sniffing and the solution to parameter sniffing.
March 29, 2011 at 7:06 am
You could go back to the report design and put a specify a default value for the parameter of
=Today()
Or you could do a data driven subscription and build a...
March 28, 2011 at 1:07 pm
Put a text box in the footer. Add an expression for the value of the textbox, something like
=AVG(ReportItems!TextboxYouWantToAverage.Value). You are using a ReportItems reference, not a field...
March 28, 2011 at 12:55 pm
Right click on the axis and go the axis properties. Set the axis interval there.
March 28, 2011 at 11:10 am
Did you have to create a new project and import the report or are you using an existing project?
If you created a new project and imported an existing report, then...
March 28, 2011 at 9:21 am
Sorry...this entry looks redundant with one above.
You might also try this
=iif(Parameters!PUBLICATION.value = 304, round(Fields!LASTWEEK.Value/5), IIF(Parameters!PUBLICATION.value = 305,round(Fields!LASTWEEK.Value/5),round(Fields!LASTWEEK.Value)))
March 25, 2011 at 2:58 pm
You have a dataset for Region. Build another dataset for country with a
WHERE Region = @Region (where @Region is the value selected in your parameter)
or
WHERE Region IN (@Region)...
March 25, 2011 at 10:00 am
Right click on the field and go to TextBox Properties. In the TextBox Properties dialog box, there is a tab called Action. That is where you will find...
March 24, 2011 at 9:33 am
I would like to make sure we are talking about the same thing. To me a Sub Report is a separate report that is placed in the body of...
March 24, 2011 at 7:08 am
I have had the best luck with this issue when I build the repeating header very early in the development process, usually before I add much grouping. I have...
March 24, 2011 at 7:01 am
The first thing I would probably do is to write all of this into one statement joining all your tables (Erasure to CustomerField to Media to Partition to Computer to...
March 24, 2011 at 6:57 am
You can certainly go to the code and find and replace 9pt with 11pt. I never realized the font face was not in the rdl file, it is definitely...
March 23, 2011 at 3:02 pm
Viewing 15 posts - 1,336 through 1,350 (of 2,278 total)