reportbuilder
14 TopicsPower BI Report Builder Dynamic Page number inside Power BI PBIX Report
Hi all , I need to generate a report with 2 tables that have a dynamic number of rows. 90% of my report can be created using Power BI Desktop, however there are 2 tables with a very different number of rows...varying from 250, 500, 900 rows... so at least for these 2 tables I would need Power BI Report Builder (paginated reports) my question is if inserting into a PBIX Power BI with the component of Power BI desktop Paginated Report creates multiple pages when exporting to PDF I am looking for the best option and if MIXING powerbi report builder inside powerbi desktop is correct for my usecase. Because charts and interactivity are cool from powerbi side..but I need to export tables in PDF with 950 rows.... RegardsSolved939Views0likes2CommentsReport Builder items showing down and to the right
Been using report builder for several years without issue. Today I opened a report and everything it in seems to have shifted, even off the page, thinking it was an issue with that report I opened others, the same deal, then I tried opening just the program and starting a blank report, same problem. The text box I entered and typed test into is making the text appear down and to the right a bit, if I click in the box I can see the text I'm entering and where it is showing. When I'm not in the text box it's blank, like with the execution time field that is in the bottom right by default, the content is appear off the page but the text box that contains it is still in the bottom right of the footer. I've tried uninstalling, rebooting, installing the newest version, running repairs on the program, nothing gets it back to working. I have collegaues who are on the same version and theirs is working fine. I also noticed that my ribbon options are squished, such as Design and Zoom This was all working yesterday and I don't think anything has changed on my system overnightSolved3.1KViews0likes8CommentsIssues with Totals in Report Builder When Using DIVIDE and COUNTDISTINCT Measures
Hi, I've connected an RDL file in Report Builder to a semantic model developed in Microsoft Fabric. Basic measures like SUM work as expected. However, I'm encountering issues with more complex measures such as DIVIDE(Sum1, Sum2) and COUNTDISTINCT(ID), particularly in the total rows. When I don't apply a specific formula in the report, the total row displays First(measure) instead of recalculating the total as needed. For the DIVIDE issue, I understand that applying a formula directly in Report Builder can resolve it, which is acceptable. However, I have several complex measures to work with, like COUNTDISTINCT(ID), where retrieving all ID values would exceed my Fabric capacity, making it impractical to perform a distinct count directly in the report. Is there a feasible solution for this? Do you have any advice on handling such scenarios? Additionally, are there alternative tools for creating custom tables for export purposes, other than Power BI, which tends to slow down with complex measures and large datasets?Solved1.7KViews0likes3CommentsPower BI Report Builder - Inconsistent Report Rendering Across Different Environments
We're experiencing inconsistent report rendering behavior for a SSRS/PBIR report (RDLP) across different environments. The report has been functioning correctly for 3 months until recently. Current Behavior: 1. Power BI Report Builder (Desktop): - Renders correctly with all expected data - Shows all 21 pages as designed 2. Customer Browser Access: - Only shows 4 pages - Incomplete data rendering 3. Developer Browser Access: - Shows blank/white page - No data rendered -Filters work and are selected correctly Technical Details: - Report Type: RDLP (Power BI Report Builder) - Data Source: Power BI Dataset - Recent Changes: None on our end - Duration of Issue: Recently emerged after working correctly for 3 months Expected Behavior: All environments should render the complete report (21 pages) with full data, matching the Power BI Report Builder preview. Impact: This inconsistency affects our production environment and customer experience. The report is critical for business operations and needs to render consistently across all access methods. Troubleshooting Steps Taken: 1. Verified data source connectivity 2. Confirmed report settings are identical across environments 3. Validated user permissions and access rights 4. Tested with multiple browsers and users ( IE, Chrome Opera) 5. Affects mutlible reports. Request: Please investigate potential service layer changes that might affect report rendering consistency across different access methods. Could you please provide guidance on: 1. Known service-side changes that might affect rendering, last update date? any breaking changes? 2. Recommended configuration adjustments 3. Any required updates to maintain consistent behavior I know this is in preview still but customers need this especially moving from on prem to cloud. #Claude generated text 😉2.1KViews0likes9Comments4 Filters for Values using DAX in Report Builder
I am working on a Paginated report in REPORT BUILDER that the user would like to: Select date (Month/Year) then the PhysicianOrganization then the PCPLocation to have a pdf for that location only. (PhysicianOrganization must filter PCPLocation) Below the Physician Organization does not filter on the PCPLocation and it must! Dataset1 will be filtered by PhysicianOrganization, PCPLocation and Date (monthly reporting) which used month and year and PhysicianLocation Dataset which has the Physician Organization & PCPLocation values which the Parameters connect to. Below is what the report data looks like and I added the DAX fields below (this is from a CUBE or Tabular connection) I am thinking I should put the Year and Month in the PhysicianLocation dataset? I have two tables--- this contains 2 the PhysicianOrganization and PCPLocation parameter that are referenced in the Parameter short dataset: EVALUATE SUMMARIZECOLUMNS( 'Providers'[PhysicianOrganization] ,'Providers'[PCPLocation] ) The main dataset that has all the values but PhysicianOrganization and PCPLocation have the parameter referenced but that points to the short 1) table above. Only the Hand filled in Parameters for Month and Year (all hand filled in) are in the main dataset. How can I get what is needed? I just need the report to be able to 1st filter by PhysicianOrganization then PCPLocation (subset of the PhysicianOrganization column). Here is Dataset1 where all 4 parameters are referenced : EVALUATE SUMMARIZECOLUMNS( 'Providers'[PCPLocation], 'Providers'[PhysicianOrganization], 'Patients'[InsuranceType], 'DateDim'[Year], 'DateDim'[MonthNameAbbreviation], FILTER( 'DateDim', 'DateDim'[Year] = VALUE(@Year) ), FILTER( 'Providers', 'Providers'[PhysicianOrganization] = @PhysicianOrganization && 'Providers'[PCPLocation] = @PCPLocation ), FILTER( 'DateDim', 'DateDim'[MonthNameAbbreviation] = @Month ), FILTER( 'Patients', 'Patients'[Populations] = "HAP HFHS Employees" ), "UniquePatients", [UniquePatients], "TotalCostYTD", [TotalCostYTD], "MemberMonthsYTD", [MemberMonthsYTD], "Admits1000YTD", [Admits1000YTD], "ERVisitsYTD", [ERVisitsYTD], "ERVisits1000YTD", [ERVisits1000YTD], "BloodPressureNumerator", [BloodPressureNumerator], "BloodPressureDenominator", [BloodPressureDenominator], "BloodPressureRate", [BloodPressureRate], "DiabetesHbA1cLessThan8Numerator", [DiabetesHbA1cLessThan8Numerator], "DiabetesDenominator", [DiabetesDenominator], "DiabetesHbA1cLessThan8Rate", [DiabetesHbA1cLessThan8Rate], "ReadmitsYTD", [ReadmitsYTD], "ReadmitsYTDRate", [ReadmitsYTD%], "AdmitsYTD", [AdmitsYTD], "AllowedCost", [AllowedCost], "AllowedCostYTD", [AllowedCostYTD], "AllowedPMPMYTD", [AllowedPMPMYTD], "BreastCancerScreeningNumerator", [BreastCancerScreeningNumerator], "BreastCancerScreeningDenominator", [BreastCancerScreeningDenominator], "BreastCancerScreeningRate", [BreastCancerScreeningRate], "ColorectalCancerScreeningDenominator", [ColorectalCancerScreeningDenominator], "ColorectalCancerScreeningNumerator", [ColorectalCancerScreeningNumerator], "ColorectalCancerScreeningRate", [ColorectalCancerScreeningRate], "ERVisitsRate", [ERVisitsYTDMoreThan5Visits1000], "ERVisitsNumerator", [ERVisitsYTDMoreThan5Visits], "VirtualNumerator", [OutpatientUtilYTD], "VirtualRate", [OutpatientUtil1000YTD], "DepressionScreeningNumerator", [DepressionScreeningNumerator], "DepressionScreeningDenominator", [DepressionScreeningDenominator], "DepressionScreeningRate", [DepressionScreeningRate], "DepressionPositiveScreenNumerator", [DepressionPositiveScreenNumerator], "DepressionPositiveScreenDenominator", [DepressionPositiveScreenDenominator], "DepressionPositiveScreenRate", [DepressionPositiveScreenRate], "CervicalCancerNumerator", [CervicalCancerNumerator], "CervicalCancerDenominator", [CervicalCancerDenominator], "CervicalCancerRate", [CervicalCancerRate], "GenericNumeratorYTD", [GenericNumeratorYTD], "GenericDenominatorYTD", [GenericDenominatorYTD], "GenericFillRateYTD", [GenericFillRateYTD], "September 2023 YTD", "September 2023 YTD", "Zero", 0 )869Views0likes2CommentsReport Builder Error - Forward Dependencies Are Not Valid
Hi everyone! I'm working on building a paginated report using Report Builder. I created a data source and dataset on Report Server. The dataset has a parameter specified in the query, so the parameter was generated in Report Builder when I connected the report to it. I'm trying to add values in the Available Values tab of this parameter, but when I try to run the report, I'm getting an error message that says "The report parameter xyz has a DefaultValue or a ValidValue that depends on the report parameter xyz. Forward dependencies are not valid." This parameter is being used in a where clause on the dataset (something like below), so I don't believe there are any dependencies here. SELECT * FROM table1 t1 JOIN table2 t2 ON t1.key = t2.key WHERE Department = @Department AND XYZ = xyz Please advise. Thanks!Solved9.7KViews0likes2CommentsReport Builder throws excessive Warnings in ReportingServicesService
Since the May 2022 update our PowerBI RS servers have been throwing excessive warnings when "Editing a report" from the portal Example: library!ReportServer_0-5!1d5c!10/25/2022-15:49:26:: i INFO: Call to CreateReportEditSessionAction(Parent=/, Report=****NameOfTheReport*****). User: MYDOMAIN\MYUSERID. processing!ReportServer_0-5!1d5c!10/25/2022-15:49:26:: w WARN: An exception occurred when extracting info about expression usage. Details: System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.CodeAnalysis.VisualBasic, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified. File name: 'Microsoft.CodeAnalysis.VisualBasic, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' at Microsoft.ReportingServices.RdlExpressions.ExpressionExtractor.ExtractExpression(ExpressionInfo exprInfo) at Microsoft.ReportingServices.RdlExpressions.VBExpressionParser.AddToExpressionInstrumentation(ExpressionInfo expressionInfo) WRN: Assembly binding logging is turned OFF. This warning is repeated about 20 times, bloating the logs. When deploying large batches of reports using powershell modules, this turns into over 1000 copies of said error. I have repeated the use case against a much older server installation (Jan 2019) and do not get the same Warnings. I have turned on Fusion logging as per internet guidance :~) and with the added verbose logging can clearly see the report server is looking for: LOG: Attempting download of new URL file:///L:/Program_Files/PBIRS/PBIRS/ReportServer/RSTempFiles/reportserver/87b89504/492007a1/Microsoft.CodeAnalysis.VisualBasic.DLL. The DLL its searching for definitely does not exist in the installation directory: l:\programfiles\pbirs\reportserver\bin along with all the other DLLs the fusion logs reference Update to Sept 2022? Update dot.Net? Thoughts1.4KViews0likes4CommentsReport Builder - Matrix with text without aggregation
I need to create the following report, the idea is that students will attend to all classes but in any day, the report needs to group who attend to what in a specific day, I'm using power BI report builder, but it's not working. I did was able to make it work on Power BI using Measure: Student List = CONCATENATEX('Schedule',[Student],UNICHAR(10) ) Matrix with Class on Rows, Day on Columns and [Student List] on Values. But I don't know how to make it work on Report Builder Below is the data table and what I wanted to look likeSolved2KViews0likes3CommentsDocumentMapLabel export Word in Table of Content
Hi, My customers want to build a table of contents when they export a Report (Power BI Report Builder) in Word. I see in Create-a-document-map-report-builder-and-ssrs and Exporting-to-microsoft-word-report-builder-and-ssrs that I can use DocumentMapLabel to do it. So i set a DocumentmapLabel at every elements, but when I export report in Word nothing happen. In navigation word find anything, and when I add a table of contents, word don't find any entry (it say : No table of contents entries were found). How can I solve this problem ? Thanks1.6KViews1like4Comments