SSRS issue in Sharepoint 2010. Blank columns - sql-server-2008

The images below show "Linked Room" not returning any value.
The issue is when 1st row returns a linked room with a blank value all others come as blank.
The moment i delete 1st entry all the rows are displayed properly as shown in 2nd image.
Can anyone help me find why is this issue coming?

Had to specifically provide column names in the CAML query as shown below:
<ElementPath IgnoreNamespaces="true">GetListItemsResponse/GetListItemsResult/listitems/data/row{#Column1,#Column2,#Column3,#Column4,#column5,#column6,#column7}</ElementPath>

Related

[SSRS][SharePoint] How to avoid display the elements when counting on a group by tablix?

New to SSRS, we asked me to create a simple report on SSRS, linked to a Sharepoint List.
The Report consists of a tablix with two columns: Client and the number of orders they passed.
The first column is only containing the sharepoint field "Client Name", and the report generate automatically a list of Clients based on the content of the Sharepoint List. The Column is also used as a group by to the Tablix, to group the results by Client Name.
My second column is an expression :
=Count(Fields!ID.Value, "Client")
The column is working nearly accordingly to my willing : the report displays the number of orders by client in the list, but... When a client has more than one order, the count is displayed the same number of times.
How can i prevent that? I tried a Running Value solution, or only count.. But if the results are not the right one, the same problem is occuring : The report tablix have as much rows than elements list.
Picture for helping, because my english is far for perfect.
Image of the multiples rows
You can set client column in group expression in Details section. Check below screen shot, It will help you.

SSRS grouping giving blank rows

Apologies for the simple question but it's driving me crazy.
I am trying to show how many items a surveyor has seen in a year. I am counting the unique identifier as the expression for the number of items seen.
I have added grouping and included my sum within the groups as per the report link here:- (I'm new so can't post pics yet)
https://i.stack.imgur.com/vZNUM.png
But when I preview it, it shows a blank row next to the sum.
Report in preview
So the first row shows 19 and there are 19 blank rows in the column next to it. I try to delete that column but then I get the message table must include one column.
What am I doing wrong and wht is the right way to do this?
Many thanks for any help
Natalie
The bit that's left over on the right is the "Details" region - essentially where you want the detail of your report to live.
Try putting your sum() in there, deleting the "Details" group, and deleting the column where your sum() is now.

SSRS Report matching parent/child data incorrectly

I am having an odd issue with SSRS. I built a report that works correctly when filtered down to a single part number in the underlying data set query. When I take that filter off so that all data is displayed on the report, it does not work correctly. In the latter instance, all of the child details display incorrectly (and randomly) under a single part number.
First case, when filtered to a single part number... all looks good and report works correctly:
Second case, after taking filter off so that all data comes through... All of the part numbers show no detail, except randomly one part number will show all of the detail:
I have been unable to figure out what is causing this confusing behavior... Any tips?
Thanks!!!

Empty cell values in column after publishing report

I have a report in SSRS (BIDS) that shows seven different columns. First one shows name. The other shows some data in number/currency format. All data comes from same dataset. All data shows when viewing in preview. Then i publish and try so show it, all columns shows data except the first, the one with name... The columns that shows are exactly the same number as names so no problem there, it´s like the names are invisible. Has any one experienced this before?
I had to change the fields from where the dataset get it´s data. I changed my name to only "dimension path" + ".[MEMBER_UNIQUE_NAME]. Then i added a new query field with field source ending with ".[MEMBER_CAPTION], see picture. Then i used the "member_caption field to show in column.
Now it works both in BIDS and in external environment.

Questions about exporting report to Excel

I'm using SSRS 2008, I have a table report which includes a Region column that all other columns are grouped by it.
I needed the report to be divided in different excel sheets when exporting it, which I have already done.
I also needed to not include the region column in the report itself, so I hide it.
But when exporting it to Excel I get Column A as a blank column that the user needs to delete.
So I have the following questions:
How can I exclude a column from a report but still keeping it as a group and breaking the report by it?
How can I get the names of each sheet to display the names of the Regions?
Thank You!
Ok, I found the answers:
I deleted the column but kept the Group when the question was prompt to me.
On tablix member properties (when clicking on the relevant group) there is "Group" > "Page Name" > expression > =Fields!Region.Value.
It works great!