SSRS report not displaying data in pdf - reporting-services

For particular site say 213,data is not displaying in pdf. But for other site data is displaying in pdf. for 213, sql query returns the result but not in pdf..
Input parameter is result key. Please explain why this happening?

Related

Dynamic Page Break on SSRS Report based on Parameter Selection

Currently SSRS Report is grouped by the following in the Row Group. When I export the report to excel it is broken into tabs by that ID. I am now passing a Parameter to the report that if set to false, the exported excel report should return only one tab. After doing a little research created an expression in the PageBreak Disabled Property. Whenever I run the report now no matter if I set the parameter to True or False it only returns a single tab. Can anyone offer any insight? THanks!
[![enter image description here][2]][2]
.Data File strikes again. Cleared cashe the expression worked.

MS Access: Chart in report blank when underlying query has a parameter

I have a report in MS Access 16 with a chart in the Report Footer. The chart and the report have the same data source - a query ("Pipeline Query"). One of the criteria in Pipeline Query refers to a Combo Box on a form (Qtr = forms![Main Form]![Choose_Pipeline]).
The report and the chart at the bottom look great, however I get a popup saying
"The Microsoft Access database engine does not recognize 'forms![Main
Form]!Choose_Pipeline' as a valid field name or expression."
To fix that, I set a Parameter on the query for forms![Main Menu]![Choose_Pipeline]. This does eliminate the error message, but now the chart is blank! The query still returns the correct data and the data sections of the report work just fine.
Is there something with query parameters that interfere with charts in reports? Is there a workaround?
Update: When I wrote this I could have sworn the chart looked fine if the form reference was in the criteria but not the parameter. Now I can't replicate that and any time the query is dynamic and refers to the form at all, the chart is blank.

MS Access 2010 Can't add Attachment to Attachment Field type if currently zero attachments

I'm using MS Access 2010 and have some SQL and VBA but primarily let Access do the background programming.
I currently have an issue regarding an inability to add an Attachment to an "Attachment" field type if that field is currently empty. It works fine if there are already existing attachments for that field in a given record.
In Form with Format "Datasheet", the records with zero attachments in the Attachment field type display as "#ERROR". The ones that do have attachments (say 1), the 1 displays but with no paperclip and can't click to view.
In Single Form View (only one record displayed), the empty field appears with paperclip and "0". Hovering over the field yields "Double-click to view or add attachments" but the double-click is non-functioning. (yes I've tried speeding up and slowing down pace of double-clicks.) If there are indeed current attachments, double-click works normally... appreciate any insight you could provide

Use expression in access report textbox

I have a MS access report that I want to run using a linked excel table (so i cannot make any changes to the table in access).
The report has a text box which takes each row in the table and displays it in the text box and later prints it. I want to add a "*" at the beginning and end of the string and then display it in the text box.
I have done this so far:
- Choose data source (excel linked table) from report view
- In design view, press alt+F8 and drag and drop the column header I want into the report.
When I run the report it shows the report on each page, one page for every row of data which I will print later.
Now in design view after clicking on the text box, I go to property sheet and then the "Data" tab, if I try to change the expression to:
="" & [tablename].[headername] & ""
EDIT: There is an "asterisk" sign between the " " above, i don't know why they don't show.
When I run the report it asks me the parameter for the row number I want and displays the report only for that row. How can I use an expression and still be able to get all rows in the report in different pages?
Thanks!
I did what I didn't want to in order to get the problem solved. I used a query to add an additional column (using an expression) and used the query as my data source. Doesn't look like there is a good way to use the report to directly make changes to the table data and show it in a textbox.

SSRS displaying image from database

I am trying to display image from database in my SSRS report. The report has two datasets.
For all text boxes etc. I have added value expression as below:
=First(Fields!Branding4Tx.Value, "dsPrintOData_tblProdOrders")
But when I do this in the value field of image box, it return an error.
=Fields!ProdImage1.Value, "dsPrintOData_tblProdOrders"
If I just put =Fields!ProdImage1.Value
it does not return error but does not display any image too.
Please advise.
Thanks
It depends on the value in the ProdImage1 field. If it is a VARBINARY(MAX) data type value, then we can select Database as the image Source. If it is a string of the image URL, then we should select External as the image Source.
The following blog about Rendering images from a database on SSRS reports is for your reference:
http://www.mssqltips.com/sqlservertip/2978/rendering-images-from-a-database-on-ssrs-reports/