About 26,700 results
Open links in new tab
  1. How to get rid of blank pages in PDF exported from SSRS

    Dec 12, 2008 · I have a two-page SSRS report. When I exported it to PDF it was taking 4 pages due to its width, where the 2nd and 4th pages were displaying one of my fields from the table. I tried to set …

  2. Adding a Groupby to a Count (IIF in Report Builder

    May 9, 2025 · 0 I have a report in SSRS, built using Report Builder 15 There is a Count column that uses this expression: =Count(IIf(Fields!DataValue.Value = "Value1" , Fields!Amount.Value , Nothing) …

  3. How do I format date and time on ssrs report? - Stack Overflow

    Apr 12, 2013 · 3 The following is how I do it using Visual Studio 2017 for an RDL targetted for SSRS 2017: Right-click on the field in the textbox on the design surface and choose Placeholder …

  4. Tablix: Repeat header rows on each page not working

    Jul 1, 2012 · 195 I have a tablix with lots of rows that span over multiple pages. I have set the Tablix property Repeat header rows on each page but this does not work. I read somewhere that this is a …

  5. SQL Server - SSRS - Where to find query generating the report

    Feb 18, 2011 · The guy who created all the reporting using SSRS has left, and I am trying to troubleshoot one of the reports being generated. How do I get access to look at the query that is …

  6. Joining two datasets to create a single tablix in report builder 3

    Build two data sets on SSRS tool with the respective queries and make sure both the data sets have same key column (personID). On the SSRS report design, create a table from tool box and add the …

  7. Column populates data in SSMS but shows completely blank in SSRS ...

    Nov 20, 2024 · I further have to upload the report builder file into our record-keeping system and I see the same blank row come through. When I put an ISNULL(Count(UserId), '0') on the column, it …

  8. Summing a column of expressions in SSRS (total sum)

    May 6, 2012 · I need this on Report Builder: The detail row in my table contains a column with an expression: =sum (Fields!one.Value) / sum (Fields!two.Value) I want to sum that column, but the …

  9. Using the IN operator to filter in reporting services

    Nov 7, 2013 · This is confusing because IT DOESN'T. At least it didn't for me and I am using SSRS 2012 with Visual Studio 2010. It turns out that when you are using the IN operator, SSRS is …

  10. Get Row Count in SSRS Report Builder - Stack Overflow

    This is possible either by count function in SSRS or by using RANK/ROW_NUMBER function in SQL Query and assigning that as field to the report (RANK/ROW_NUMBER would give us rank to each …