How i can display parameter prompt in other language like arabic
(right to left)
Regard
LPW
Plz
some body reply i need to display parameter prompt in other language
How i can display parameter prompt in other language like arabic
(right to left)
Regard
LPW
Plz
some body reply i need to display parameter prompt in other language
We have reports in RS that includes a display of selected parameter values in the page footer of the report. When "Select All" is selected in the parameter, all parameter values are displayed in our page footer. We would like to rather display the words "Select All" rather than displaying all of the available selections when select all is selected. Is there a way to do this?
Thanks,
Joseph
If you know the number of parameters in the list, you could compare that number with the count of the parameter collection.
Example:
Set up a text box, and in the expression put:
=iif(Parameters!yourParameter.Count = yourCount, "Select All", Join(Parameters!yourParameter,", "))
That is what I have done. There could be a simpler way, I just haven't stumbled upon it yet!
BobP
|||If only theres a way to determine how many rows or records are returned by the dataset in the parameter.I need to display parameter value on my report.This parameter is coming from web application.
Example:I am passing parameter Dealer Name from web application to Report.
How to display that Dealer Name on Report.
Drag a textbox control in the report.
go to edit expression for that textbox.
select parameter on ur left side, it displays all the parameters listed in ur report on the right hand side.(dealer name as u said for example). incase it is not used in query, u can create one parameter which also be listed in the right hand side.
double click the parameter you want to display in the text box.
sqlClassic multi-select problem. I am trying to display the delta between visits to our clinic for the current timeframe versus the same timeframe last year. Pretty straightforward application of ParallelPeriod.
The following query works just fine:
WITH
MEMBER [Measures].[Test] AS
'[Measures].[Visits] - (ParallelPeriod([Time].[Visit Date].[Year], 1), [Measures].[Visits])'
select
{[Test], [Visits]} on columns
from [Clinic]
where ([February 2006])
However, change the where clause to include a set rather than a member...
WITH
MEMBER [Measures].[Test] AS
'[Measures].[Visits] - (ParallelPeriod([Time].[Visit Date].[Year], 1), [Measures].[Visits])'
select
{[Test], [Visits]} on columns
from [Clinic]
where ({[February 2006], [March 2006]})
...and it breaks with the following error: #Error The MDX function PARALLELPERIOD failed because the coordinate for the 'Quarter' attribute contains a set.
Thanks to Moshe's very useful article on multi-select (http://sqljunkies.com/WebLog/mosha/archive/2005/11/18/multiselect_friendly_mdx.aspx), I understand what is going on. Since I am selecting a set rather than a single member from the visit date hierarchy, parallelperiod chokes.
WHERE I NEED HELP:
What I would like to be able to do is apply parallelperiod to each member of the set and aggregate the result. As I understand it, that would fix my problem and, I believe, give me the correct result. However, I'm not yet good enough at MDX to figure out how to do this. Help, please?
Here is an example using Adventure Works and the "Existing" operator to sum the total for whatever months are contained in your WHERE clause set:
Original Query
WITH
MEMBER [Measures].[Test] AS
[Measures].[Order Count] - (ParallelPeriod([Date].[Calendar].[Calendar Year], 1), [Measures].[Order Count])
SELECT
{[Measures].[Test], [Measures].[Order Count]} on columns
FROM
[Adventure Works]
WHERE
([Date].[Calendar].[Month].&[2004]&[1])
Revised Query using Existing
WITH
MEMBER [Measures].[Test] AS
SUM(Existing [Date].[Calendar].[Month].Members,
([Measures].[Order Count] - (ParallelPeriod([Date].[Calendar].[Calendar Year], 1), [Measures].[Order Count])))
SELECT
{[Measures].[Test], [Measures].[Order Count]} on columns
FROM
[Adventure Works]
WHERE
({[Date].[Calendar].[Month].&[2004]&[1],
[Date].[Calendar].[Month].&[2004]&[2]})
HTH,
Steve
Questoin
I am using Sql Server 2000.
I have a table named Cities which has more than 2600000 records.
I have to display the records for a specific city page wise.
I don't want to compromise with performance.
Can anyone has the idea?
Waiting for your fruitful response.
Happy Day And Night For All
Muhammad Zeeshanuddin Khan
Hi Muhammad,
Check out this article. The idea behind is that you only fetch the records from the database that you display on the active pageIndex.
Succes!
Rutger van Hagen
Hello,
I want to display subtotals for a column only for that page. Like;
Index Value
--
1 4
2 5
Subtotal 9
-
3 1
4 2
Subtotal 3
Total 12
RunningValue gives cumulative totals. I need subtotals for each visible page only. Is there a way to do it ?
Constraints:
I'm using a table. And I shouldn't use page breaks on my report.
Thanks in advance
Insert/ Add the Page Footer to the report. Now, inser another text box and the expression for this will be
=Sum(ReportItems!textbox6.Value)
TextBox6 is the field which contains the value, More information about this can be found at
http://technet.microsoft.com/en-us/library/ms159677.aspx
|||Thank you for your reply, Techquest.It is solution for what I asked. But I need something different. I shouldn't use page footer or header either. I'm limited with the page body.
how to display page number outside page header and page footer?
Disable paging in the GridView.
In the AJAX library there is a control calledDataPager.
Set it's PagedControlID to the GridView.
This control can be placed anywhere on the Page.