Quantcast
Channel: SQL Server Reporting Services, Power View forum
Viewing all 10045 articles
Browse latest View live

The Value expression for the textrun ‘Textbox16.Paragraphs[0].TextRuns[0]’ contains an error: Procedure call or argument is not valid

$
0
0

Hi

Reporting Services 2008 - there doesn't seem to be anything unusual about the textbox, was wondering if anyone could shed some light on this error?

Thanks in advance

Josh


How to handle two category groups :

$
0
0

Hello All,

I have a Area chart which have two category groups:
Category Group 1- Calculated date
Category group 2 - Normal date 
Series Group - Projects
I want the series groups amount on the basis of calculated date in area chart using the series grouping.
And a line chart to be added which will show the actual amount for that Particular month ignoring the series grouping.
Is there any way to do this as it seems when I use two category groups the series values are not being calculated properly.
Best Regards,
Pragati

Getting respective date of a maximum total

$
0
0

Hi,

My report looks like this :

In that above report maximum Total quantity is 125929 and its respective date is 7/1/2013.

So How can i insert a row(Top or bottom) that gives respective date of maximum quantity? 

Conditional Hyperlink to another report...

$
0
0

Hi, we are trying to create a hyperlink to another report based in the value of the field..

If the field is OK, then no hyperlink is placed, when the field is NOK, we want to put a hyperlink to another report..

Can we do this?

How can we set a conditional acction for the column?

 

Thanks!


cheers

Parameter contains '&' character

$
0
0

Hi,

I am passing parameter through URL for SSRS report viewer. My parameter value contains '&' character like "P&B Ltd". It is showing below error :

  • The path of the item '..//' is not valid. The full path must be less than 260 characters long; other restrictions apply. If the report server is in native mode, the path must start with slash. (rsInvalidItemPath)

Please help.


Sachin Bhosale

SSRS - Multiple field results in same cell

$
0
0

Hi,

I am trying to create an SSRS report to display a single row of Household information (from CRM Dynamics)

Household being the Parent Entity, with 1:N relationship with Contact Entity.

How would I go about showing all the Firstnames (from Contact) in the same cell like the below?

Thanks

Clayton

Adding a Quarter column every three months in a report in SSRS

$
0
0

This is driving me a bit bonkers. It seems like it should be easy but SSRS has me stumped.

I want to create a report of our customers displaying the monthly sales totals and display the Quarter totals at the end of  every third month, e.g.

Customer       Jan Feb Mar Quarter1  Apr May JunQuarter2 Jul  Aug...

I'm new to SSRS and I've created the report with the Quarter totals and the far right end, but I can place my finger on how to do it every three months.

Searching the web has not really helped me produce a solution. If you can give me insights, I'd appreciate it.

My data exists in one table. Here is the query:

SELECT customer
    , customercode
    , city
    , state
    , salesperson
    , invoiceYear
    , invoiceMonth
    , CAST(SUM(netSalesValue + discValue) / 1000 AS decimal(10, 1)) AS grossSales
    , CASE WHEN invoiceMonth BETWEEN 1 AND 3
             THEN 'Q1'
           WHEN invoiceMonth BETWEEN 4 AND 6
             THEN 'Q2'
           WHEN invoiceMonth BETWEEN 7 AND 9
             THEN 'Q3'
           WHEN invoiceMonth BETWEEN 10 AND 12
              THEN 'Q4'
        END AS QuarterPeriod
    , Sync

    FROM orderstable
    WHERE (Sync = 1)
        AND (invoiceYear = @InvoiceYear)

    GROUP BY invoiceYear
           , invoiceMonth
           , salesperson
           , customer
           , customercode
           , city
           , state
           , Sync

    ORDER BY salesperson
           , customer
           , invoiceMonth

My query results are as follows:

Customer Name | 0000305 | Orange | CA | SalesPerson Name | 2015 | 1 | 8.4 | Q1 | True


How do you print from Microsoft Edge?

$
0
0
I have followed all the instructions that I have found on printing from Edge and still nothing is printing? Why can we just have a printer Icon to click?

Change the scale of the chart in Report Builder

$
0
0

Hi,

I have an stacked chart with line with markers. The scale on the right side is the finished good which has a min qty of 383 while the highest is 52439. how can i set this scale that start from 0 to 300 and soon. right now under scale properties I set the max to 60000, the min is set to auto while in the interval properties i set this to 10000. anybody help or suggestion on how this line marker adjust the scale quantity (fisnished good). thank you. 

Drill Through Report: 'full path must be less than 260' characters'

$
0
0

Hi All,

I have a drill through report. I am passing multiple parameter values to my sub report using 'url'.

But I am getting error 'The full path must be less than 260 characters long'. Please guide me in resolving this issue.

Changing the Windows Service Account used to run Sql Server Reporting Services (2008)

$
0
0

We may need to change the account presently used to run the Windows Service "SQL Server Reporting Services".

What are the implications of making such a change?

TIA,

edm2

ssrs 2012 export problem to excel

$
0
0

In an ssrs 2012, there is an problem when the report is exported to excel when running on a ssrs 2012 report server. When the report is generated, selected cells are highlighted. When the report is exported to  a PDF file, the correct selected cells are highlighted with a background color.

However when the report is exported to excel on the report server, all cells are highlited from the first point of where the individual cells are highlighted to the end of the data. For example, if row # 5 has a cell highligted in column D then all rows from row #5 to the end have in column D are incorrectly highlighted.

When I run the rdl on my workstation, there are no export problems. The report server exports excel files to an *.xls file and my workstation also  exports the excel file to an *.xls file also. However I do have office 2013 on my workstation.

Note: The code that is causing this highlight the background color for a cell is the following:

=IIF(Fields!IndicatorCount12.Value > 0, "LightSteelBlue" , nothing). This is the code in the background property of the applicable cell.

Thus would you tell me and/or point me to a url that will tell me how to solve this problem?



Show Empty Column Values in SSAS/SSRS

$
0
0
I have a situation ..
In My cube I have :
A Fact table <<Company Revenue>>
2 Dimension <<Month.Dim>> , <<Company>>

I have 4 company say (A,B,C,D)
but i have record for only company A & D that too only for December month .
 When I create a SSRS report out of the cube i want a matrix where all the company names to be displayed in the rows & all the months in the columns and company's revenue in data

What my report is displaying :
Company  |   December
-------------------------------------------------------
A                 |   20000
-------------------------------------------------------
D                 |   3900  
-------------------------------------------------------

what is needed :

Company  |   January  |  February | March |  ........... | December
-----------------------------------------------------------------------------------
A                 |                    |                  |              |             |  20000
----------------------------------------------------------------------------------
B                |                    |                  |              |             |  
----------------------------------------------------------------------------------
C                 |                    |                  |              |             | 
----------------------------------------------------------------------------------
D                 |                    |                  |              |             |   3900  
-----------------------------------------------------------------------------------
 
Can anybody help me on this .. How do i achieve this either in SSAS or SSAS.

Why SSRS is looking for "Using machine configuration file from C:\Windows\Microsoft.NET\Framework64\v2.0.50727\config\machine.config"

$
0
0

I am using BIDS 2012.

I am getting this error:

Unable to load assembly U2.Data.Client, Version=2.1.0.0, Culture=neutral , PublicKeyToken=9ab9148678f4f448, Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: The report server has encountered a configuration error.  ---> System.IO.FileNotFoundException: Could not load file or assembly 'U2.Data.Client, Version=2.1.0.0, Culture=neutral, PublicKeyToken=9ab9148678f4f448' or one of its dependencies. The system cannot find the file specified.

When I see the log file, it shows

LOG: This bind starts in default load context.
LOG: Using application configuration file: C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer\web.config
LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework64\v2.0.50727\config\machine.config.
LOG: Post-policy reference: U2.Data.Client, Version=2.1.0.0, Culture=neutral, PublicKeyToken=9ab9148678f4f448

I am expecting

C:\Windows\Microsoft.NET\Framework64\v4.0.30319\config\machine.config

how can I force SSRS to use "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\config\machine.config".

Regards,

Rajan Kumar


Rajan

adding first and middle and last date in ssrs

$
0
0
Hello Team,
 Thanks for your help!
 I want to add dates based on requirement
1) Date in db should be like this 01/15/14 or 06/15/14 
2) Based on that dates I have to generate middle payment  02/01/14 - 11/01/14 or 07/01/14 - 11/01/14
3)Last payment 31/01/14
final results should be
1) 01/15/14 or 06/15/14
2)02/01/14 - 11/01/14 or 07/01/14 - 11/01/14
3)12/01/14
These results should come from one table and one column 
Need your help

SSRS 2008 R2 Bar chart labels not staying outside chart area

$
0
0
I have a report designed in SSRS 2008 R2.My issue is that the data labels do not stay outside the bars for high values.

Herb

Setting Variable Parameters in a SSRS subscription

$
0
0

I would like to set up a subscription that has two date parameters, I would like the end_date to be today and the start_date to be (today - 1 Month). The interface does not seem to support expressions?

 

I saw some documentation that said to use defaults in the report but that does not help because I may want multiple subscriptions with different params like 1 person may want (today - 2 months) as the start date ...

 

Any help would be appreciated

Create a report with declared value

$
0
0

Hi

I use BIDS 2008 R2 and  I have a SQL script that works fine and gives me the desired output in SQL Management studio.

declare @dt datetime
select @dt = '2015-09-10 08:23:28.000'
select
    ref_id
    ,desn
    ,tran_date
    ,payment_due
    ,ref1
    ,gross_val
     from acptran (nolock) where seq_id in (select seq_id from acptcash (nolock) where date_time = @dt)
order by ref_id,ref1

However i need to create a report so that someone else can enter the date time as a parameter in a report to get the required results. Normally i would drop my SQL script into BIDS and it would create the dataset but as this has a declared value it gives an error "The Declare SQL construct or statement is not supported."

Can anyone point me in the right direction to create this report

Thanks

John

Image not sized correctly when rendering report in WORDOPENXML format.

$
0
0

In an asp.net app I'm creating email attachments from ssrs reports and am rendering them In Word and Excel using the WORDOPENXML and EXCELOPENXML format extensions.  When I render the report in excel, the image is sized correctly, however, when I render the same report in word, its very small.  I will attach a screenshot of each, and in the word screenshot, I will select the image so you can see the image control's outline (the control's actual size).  Notice the image inside of the border is very small.  How can I resolve this?

first, excel:

and now in word:

Thank you.

Reporting Services Multi Value Parameter

$
0
0

I have an SSRS 2005 report that I want to enable for multi value. However, I always run into the issue with the way it passes multiple values. How exactly do I get a multi-value parameter setup and working on both the report AND SQL side?

I used the MS example of checking the multi checkbox for the parameter and then using a WHERE Column IN (@MultiParam), but this doesn't work. When you select one item, or is it multiple I can't remember, it fails. I really appreciate the help!


Nathon Dalton
Software Developer
Systems Administrator
Network Administrator
Blog: http://nathondalton.wordpress.com
Viewing all 10045 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>